Font Awesome Plus Square Icon (Add, New, Expansion)

In this tutorial, you will learn how to use the Font Awesome plus 'Square' icon . This icon can represent concepts like 'add,' 'new,' or 'expansion.it is referenced as 'fa fa-plus square.' We will demonstrate how to edit its color, size, and style in the 'Try It' editor.

Fontawesome Version 4.X

plus square

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

plus square

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

plus square

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

plus square

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

plus square

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


Fontawesome Version 5.X

plus square

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

plus square

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

plus square

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

plus square

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

plus square

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

How to add Font Awesome plus square Icon ?

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

HTML Code

Get complete html code for icon plus square

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

Tags

add,new,addition,expansion

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

Advertisements



Advertisements



Looking For More Icons?