Font Awesome Tag Icon (Price, Label, Token)

The Font Awesome Tag Icon is used indicate Price, Label, Token. This icon is available in three version : fa fa-tag for 4 version, fas fa-tag for 5 version and fa-solid fa-tag for 6 version. you can also change the tag icon color, font size, style, and animation by using 'Try it' editor

Fontawesome Version 4.X

tag

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

tag

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

tag

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

tag

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

tag

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


Fontawesome Version 5.X

tag

<i class='fas fa-tag'></i>

tag

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

tag

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

tag

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

tag

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

Fontawesome Version 6.X

tag

Web

<i class='fa-solid fa-tag'></i>

React

<FontAwesomeIcon icon="fa-solid fa-tag" />

Vue

<font-awesome-icon icon="fa-solid fa-tag" />

tag

Web

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

React

<FontAwesomeIcon icon="fa-solid fa-tag" style={{color: 'white'}} />

Vue

<font-awesome-icon icon="fa-solid fa-tag" :style="{color: 'white'}" />

tag

Web

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

React

<FontAwesomeIcon icon="fa-solid fa-tag" style={{color: 'red'}} />

Vue

<font-awesome-icon icon="fa-solid fa-tag" :style="{color: 'red'}" />

tag

Web

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

React

<FontAwesomeIcon icon="fa-solid fa-tag" style={{color: 'blue'}} />

Vue

<font-awesome-icon icon="fa-solid fa-tag" :style="{color: 'blue'}" />

tag

Web

<i class='fa-solid fa-tag' style='color: #f3da35'></i>

React

<FontAwesomeIcon icon="fa-solid fa-tag" style={{color: '#f3da35'}} />

Vue

<font-awesome-icon icon="fa-solid fa-tag" :style="{color: '#f3da35'}" />
Try it Yourself

How to add Font Awesome tag Icon ?

Font Awesome Icon fa fa tag 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-tag'></i>
Icon Code -
fa fa-tag

HTML Code

Get complete html code for icon tag

                    
                    <!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-tag'></i>
                        </body>
                    </html>                    

Tags

price,label,Marker,Sign,Token,Branding

Change Font Awesome Icon Tag 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-tag blue-color'></i>
      <i class='fa fa-tag green-color'></i>
      <i class='fa fa-tag teal-color'></i>
      <i class='fa fa-tag yellow-color'></i>
      <i class='fa fa-tag 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?