Font Awesome Award Icon (Prize, Medal, Achievement)

Font Awesome Award icon is used to represent a reward that you receive for doing something good, and it is also known as 'fa-Award.' If you want to edit or customize this award icon, you can utilize the 'Try It' editor to change its color, size, and animation.


Fontawesome Version 5.X

award

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

award

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

award

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

award

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

award

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

Fontawesome Version 6.X

award

Web

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

React

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

Vue

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

award

Web

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

React

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

Vue

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

award

Web

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

React

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

Vue

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

award

Web

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

React

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

Vue

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

award

Web

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

React

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

Vue

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

How to add Font Awesome award Icon ?

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

HTML Code

Get complete html code for icon award

                    
                    <!DOCTYPE html>
                    <html>
                        <head>
                        <title>Page Title</title>
                        <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
                       </head>
                        <body>
                        <i class='fas fa-award'></i>
                        </body>
                    </html>                    

Tags

prize,medal,trophy

Change Font Awesome Icon Award 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='fas fa-award blue-color'></i> <i class='fas fa-award green-color'></i> <i class='fas fa-award teal-color'></i> <i class='fas fa-award yellow-color'></i> <i class='fas fa-award 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://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">            
            
Related Icons
 

Award Icon Font Awesome - FAQs

⭐What is the Font Awesome Award Icon code?

Icon Code is - fas fa-award.

⭐ What does the fas fa-award Icon mean?

fas fa-award is the Icon code of Font Awesome Award.

⭐ Can we add fas fa-award Icon in different sizes?

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

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

Add the blue color Award icon of the font awesome by using code: fas fa-award style='color: blue;'.

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

To change the Award icon to white color use code: fas fa-award style='color: white;'.

Advertisements



Advertisements



Looking For More Icons?