Font Awesome Info Icon (Details, Information, About us)

In this tutorial, we will learn how to use info icons from Font Awesome icon. This icon is used for displaying details, information, "About Us," and other purposes. It is also known as "fa-info" or "fa fa-info" in the Font Awesome icon . We will demonstrate how to add info icon to your web page and how to customize its size, color, and style.

Fontawesome Version 4.X

info

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

info

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

info

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

info

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

info

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


Fontawesome Version 5.X

info

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

info

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

info

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

info

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

info

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

Fontawesome Version 6.X

info

Web

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

React

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

Vue

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

info

Web

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

React

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

Vue

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

info

Web

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

React

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

Vue

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

info

Web

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

React

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

Vue

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

info

Web

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

React

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

Vue

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

How to add Font Awesome info Icon ?

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

HTML Code

Get complete html code for icon info

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

Tags

details,information,about us,inform

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

 

 

Info Icon Font Awesome - FAQs

⭐What is the Font Awesome Info Icon code?

Icon Code is - fa fa-info.

⭐ What does the fa fa-info Icon mean?

fa fa-info is the Icon code of Font Awesome Info.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?