Searching....
Search Results
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>
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>
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'}" />
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.
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'>
Advertisements
Advertisements