Font Awesome ID Badge Icon (Identification, Verification, ID card)

The Font Awesome Id Badge Icon is used indicate Identification, Verification, ID card. This icon has 3 version : fa fa-id-badge for version 4, fas fa-id-badge for version 5 and fa-solid fa-id-badge for version 6. It used represents badge used to identify the person who wears it.if You Want to modify color, size, style and animation use tryit editor.

Fontawesome Version 4.X

id badge

<i class='fa fa-id-badge'></i>

id badge

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

id badge

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

id badge

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

id badge

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


Fontawesome Version 5.X

id badge

<i class='fas fa-id-badge'></i>

id badge

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

id badge

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

id badge

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

id badge

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

Fontawesome Version 6.X

id badge

Web

<i class='fa-solid fa-id-badge'></i>

React

<FontAwesomeIcon icon="fa-solid fa-id-badge" />

Vue

<font-awesome-icon icon="fa-solid fa-id-badge" />

id badge

Web

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

React

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

Vue

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

id badge

Web

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

React

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

Vue

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

id badge

Web

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

React

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

Vue

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

id badge

Web

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

React

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

Vue

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

FA Regular id badge Version 6.X

px Enter Size
Color Code
HTML
 <i class="fa-regular fa-id-badge"></i> 

How to add Font Awesome id badge Icon ?

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

HTML Code

Get complete html code for icon id badge

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

Tags

Identification,Badge,Security,Verification,ID Card

Change Font Awesome Icon Id badge 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-id-badge blue-color'></i>
      <i class='fa fa-id-badge green-color'></i>
      <i class='fa fa-id-badge teal-color'></i>
      <i class='fa fa-id-badge yellow-color'></i>
      <i class='fa fa-id-badge 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'>            
            

Advertisements



Advertisements



Looking For More Icons?