Font Awesome Navicon Icon - (Navigation, App )

In this tutorial, we will explore how to use the Font Awesome Navicon icon. This icon serves multiple purposes, including navigation and representing three horizontal lines. It is used by the class name 'fa fa-navicon' and can be implemented in menus and mobile apps. If you want to modify the color of this icon, you can change the font size, style, and animation in the 'Try It' editor

Fontawesome Version 4.X

navicon

<i class='fa fa-navicon'></i>

navicon

<i class='fa fa-navicon' style='color: white'></i>

navicon

<i class='fa fa-navicon' style='color: red'></i>

navicon

<i class='fa fa-navicon' style='color: blue'></i>

navicon

<i class='fa fa-navicon' style='color: #f3da35'></i>
Try it Yourself

How to add Font Awesome navicon Icon ?

Font Awesome Icon fa fa navicon Icon can be added to any web page simply as below. You can integrate Icon in web pages by just adding following below syntax & icon code.

Icon -
<i class='fa fa-navicon'></i>
Icon Code -
fa fa-navicon

HTML Code

Get complete html code for icon navicon

                    
                    <!DOCTYPE html>
                    <html>
                        <head>
                        <title>Page Title</title>
                        <link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
                       </head>
                        <body>
                        <i class='fa fa-navicon'></i>
                        </body>
                    </html>                    

Tags

navigation,app

Change Font Awesome Icon Navicon Color

Sometimes we need icons in different color, as we suggested by adding css style we can change color. Here we have created one example to change color of icons with css classes.


    <style>
    .blue-color {
        color:blue;
    }
     
    .green-color {
        color:green;
    }
     
    .teal-color {
        color:teal;
    }
     
    .yellow-color {
    color:yellow;
    }
    
    .red-color {
        color:red;
    }
   </style>
    
     <i class='fa fa-navicon blue-color'></i>
      <i class='fa fa-navicon green-color'></i>
      <i class='fa fa-navicon teal-color'></i>
      <i class='fa fa-navicon yellow-color'></i>
      <i class='fa fa-navicon red-color'></i>
      

Output of the above example will be as below-


Note- Make Sure You have included the below Font Awesome file in header-
            
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>            
            
Related Icons
 

Advertisements



Advertisements



Looking For More Icons?