Font Awesome Plus Icon (Add, New)

The Font Awesome plus icons (+) icon is often used to indicate an action of adding or creating something new. The plus icon can be accessed using different classes, such as fa fa-plus, fas fa-plus, or fa-solid fa-plus, depending on the style and version of Font Awesome. The plus icon can be customized in size, color, rotation, and animation using CSS or inline styles

Fontawesome Version 4.X

plus

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

plus

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

plus

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

plus

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

plus

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


Fontawesome Version 5.X

plus

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

plus

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

plus

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

plus

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

plus

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

Fontawesome Version 6.X

plus

Web

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

React

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

Vue

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

plus

Web

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

React

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

Vue

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

plus

Web

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

React

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

Vue

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

plus

Web

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

React

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

Vue

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

plus

Web

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

React

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

Vue

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

How to add Font Awesome plus Icon ?

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

HTML Code

Get complete html code for icon plus

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

Tags

addition,font awesome add icon,fa add icon,bonus,pro,advantage,perk,dividend,also, increased by,strong,Sum,total,extra,more,Insert,favicon plus,New

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

Plus Icon Font Awesome - FAQs

⭐What is the Font Awesome Plus Icon code?

Icon Code is - fa fa-plus.

⭐ What does the fa fa-plus Icon mean?

fa fa-plus is the Icon code of Font Awesome Plus.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?