Font Awesome Certificate Icon - Certified

The Font Awesome Certificate Icon, also known as fa-Certificate represents an piece of paper that signifies something as true or correct. This icon is as a symbol of certification and achievement. we can also change the color, font size and animation.

Fontawesome Version 4.X

certificate

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

certificate

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

certificate

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

certificate

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

certificate

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


Fontawesome Version 5.X

certificate

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

certificate

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

certificate

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

certificate

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

certificate

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

Fontawesome Version 6.X

certificate

Web

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

React

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

Vue

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

certificate

Web

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

React

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

Vue

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

certificate

Web

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

React

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

Vue

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

certificate

Web

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

React

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

Vue

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

certificate

Web

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

React

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

Vue

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

How to add Font Awesome certificate Icon ?

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

HTML Code

Get complete html code for icon certificate

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

Tags

file ,document,certified

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

Certificate Icon Font Awesome - FAQs

⭐What is the Font Awesome Certificate Icon code?

Icon Code is - fa fa-certificate.

⭐ What does the fa fa-certificate Icon mean?

fa fa-certificate is the Icon code of Font Awesome Certificate.

⭐ Can we add fa fa-certificate Icon in different sizes?

Yes, you can Icon of fa fa-certificate in various pixels.

⭐ How to add a Blue color Font Awesome Certificate Icon?

Add the blue color Certificate icon of the font awesome by using code: fa fa-certificate style='color: blue;'.

⭐ How to make white color icon of a Font Awesome Certificate?

To change the Certificate icon to white color use code: fa fa-certificate style='color: white;'.

Advertisements



Advertisements



Looking For More Icons?