Font Awesome Share Icon (Link, Content, Information Share)

The Font Awesome Share Icon can be used to indicate the functionality of sharing content or information with others. This Font Awesome share icon is also known as the "fa-Share" link. It can be implemented by using the class 'fa fa-share' for versions4 , 'fas fa-share' for Font Awesome 5, and 'fa-solid fa-share' for Font Awesome 6.

Fontawesome Version 4.X

share

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

share

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

share

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

share

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

share

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


Fontawesome Version 5.X

share

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

share

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

share

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

share

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

share

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

Fontawesome Version 6.X

share

Web

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

React

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

Vue

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

share

Web

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

React

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

Vue

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

share

Web

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

React

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

Vue

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

share

Web

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

React

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

Vue

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

share

Web

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

React

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

Vue

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

How to add Font Awesome share Icon ?

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

HTML Code

Get complete html code for icon share

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

Tags

contribution,part,chunk,claim,cut,divide,divvy,helping,lot,measure,parcel,piece,rake-off,ration,segment,serving,split,taste,whack,cut in,cut up,Communications,link

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

Share Icon Font Awesome - FAQs

⭐What is the Font Awesome Share Icon code?

Icon Code is - fa fa-share.

⭐ What does the fa fa-share Icon mean?

fa fa-share is the Icon code of Font Awesome Share.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?