Font awesome icons in Bootstrap

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

HOW TO GET STARTED WITH FONT-AWESOME ICONS:
 you can add bootstrap icons in two following ways:
(1) You can add your font awesome icons in your file directly by putting following line in <head> section.
you can say it bootstrap CDN .

Exa.  <html>
                  <head>
          <link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
                        <title>Font-awesome demo</title>
                  </head>
            <body>
                    <i class="fa fa-search"></i> 
                    <i class="fa fa-refresh"></i> 
                   <i class="fa fa-inr"></i> 
            </body>
         </html>

Output:
(2)You can get started with Bootstrap font-awesome icons by downloading Bootstrap font awesome library and putting in your Bootstrap  downloaded folder (we had downloaded earlier).
Step:1   download font -awesome library from official site and click on "Download" button.
                    http://fontawesome.io/get-started/ 

Comments