Font Awesome Expand Icon - Fullscreen

The Font Awesome Expand icon, also known as 'fa fa-expand,' invites users to explore content in full-screen mode. You can use the expand icon with an image gallery, a video player, or a presentation to display them in full-screen.

Fontawesome Version 4.X

expand

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

expand

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

expand

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

expand

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

expand

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


Fontawesome Version 5.X

expand

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

expand

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

expand

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

expand

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

expand

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

Fontawesome Version 6.X

expand

Web

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

React

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

Vue

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

expand

Web

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

React

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

Vue

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

expand

Web

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

React

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

Vue

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

expand

Web

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

React

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

Vue

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

expand

Web

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

React

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

Vue

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

How to add Font Awesome expand Icon ?

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

HTML Code

Get complete html code for icon expand

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

Tags

expand

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

 

 

Expand Icon Font Awesome - FAQs

⭐What is the Font Awesome Expand Icon code?

Icon Code is - fa fa-expand.

⭐ What does the fa fa-expand Icon mean?

fa fa-expand is the Icon code of Font Awesome Expand.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?