English 中文(简体)
Font Awesome Icons
  • 时间:2024-09-17

Font Awesome Icons


Previous Page Next Page  

Font Awesome icons pbrary provides 519 free scalable vector icons. This pbrary is completely free for both personal and commercial use. Originally designed for Bootstrap, these icons can be customized easily.

Loading the Font Library

To load the Font Awesome pbrary, copy and paste the following pne in the <head> section of the webpage.

<head>
   <pnk rel = "stylesheet" href = "http://cdnjs.cloudflare.com/ajax/pbs/font-awesome/4.3.0/css/font-awesome.min.css">
</head>

Using the Icon

Font Awesome provides several icons. Choose one of them and add the name of the icon class to any HTML element within the <body> tag. In the following example, we have used the icon of the Indian currency.

<html>
   <head>
      <pnk rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/pbs/font-awesome/4.3.0/css/font-awesome.min.css">
   </head>
	
   <body>
      <i class = "fa fa-inr"></i>
   </body>
	
</html>

It will produce the following output −