Font Awesome Bold Icon (Highlight, Bold Text)

Font Awesome Bold icons can be used as a tool to highlight important text or elements, whether you want to make a statement, emphasize key information, or simply add a touch of boldness. This FA Bold icon comes in 3 different versions: 'fa fa-bold' for version 4, 'fas fa-bold' for version 5, and 'fa-solid fa-bold' for version 6. Implement these classes in HTML code to use all versions.

Fontawesome Version 4.X

bold

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

bold

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

bold

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

bold

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

bold

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


Fontawesome Version 5.X

bold

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

bold

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

bold

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

bold

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

bold

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

Fontawesome Version 6.X

bold

Web

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

React

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

Vue

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

bold

Web

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

React

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

Vue

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

bold

Web

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

React

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

Vue

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

bold

Web

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

React

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

Vue

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

bold

Web

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

React

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

Vue

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

How to add Font Awesome bold Icon ?

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

HTML Code

Get complete html code for icon bold

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

Tags

confident,enterprising,text bold,higlight

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

Bold Icon Font Awesome - FAQs

⭐What is the Font Awesome Bold Icon code?

Icon Code is - fa fa-bold.

⭐ What does the fa fa-bold Icon mean?

fa fa-bold is the Icon code of Font Awesome Bold.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?