Search Results
Font Awesome Envelope Open Icon (Email, Meesage, Letter)
Fontawesome Version 4.X
envelope open
<i class='fa fa-envelope-open'></i>
envelope open
<i class='fa fa-envelope-open' style='color: white'></i>
envelope open
<i class='fa fa-envelope-open' style='color: red'></i>
envelope open
<i class='fa fa-envelope-open' style='color: blue'></i>
envelope open
<i class='fa fa-envelope-open' style='color: #f3da35'></i>
Fontawesome Version 5.X
envelope open
<i class='fas fa-envelope-open'></i>
envelope open
<i class='fas fa-envelope-open' style='color: white'></i>
envelope open
<i class='fas fa-envelope-open' style='color: red'></i>
envelope open
<i class='fas fa-envelope-open' style='color: blue'></i>
envelope open
<i class='fas fa-envelope-open' style='color: #f3da35'></i>
Fontawesome Version 6.X
envelope open
Web
<i class='fa-solid fa-envelope-open'></i>
React
<FontAwesomeIcon icon="fa-solid fa-envelope-open" />
Vue
<font-awesome-icon icon="fa-solid fa-envelope-open" />
envelope open
Web
<i class='fa-solid fa-envelope-open' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-envelope-open" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-envelope-open" :style="{color: 'white'}" />
envelope open
Web
<i class='fa-solid fa-envelope-open' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-envelope-open" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-envelope-open" :style="{color: 'red'}" />
envelope open
Web
<i class='fa-solid fa-envelope-open' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-envelope-open" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-envelope-open" :style="{color: 'blue'}" />
envelope open
Web
<i class='fa-solid fa-envelope-open' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-envelope-open" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-envelope-open" :style="{color: '#f3da35'}" />
FA Regular envelope open Version 6.X
How to add Font Awesome envelope open Icon ?
Font Awesome Icon fa fa envelope open 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 envelope open
<!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-envelope-open'></i>
</body>
</html>
Tags
email,message,letter
Change Font Awesome Icon Envelope open 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-envelope-open blue-color'></i>
<i class='fa fa-envelope-open green-color'></i>
<i class='fa fa-envelope-open teal-color'></i>
<i class='fa fa-envelope-open yellow-color'></i>
<i class='fa fa-envelope-open red-color'></i>
Output of the above example will be as below-
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
Envelope Open Icon Font Awesome - FAQs
⭐What is the Font Awesome Envelope Open Icon code?Icon Code is - fa fa-envelope-open.
⭐ What does the fa fa-envelope-open Icon mean?fa fa-envelope-open is the Icon code of Font Awesome Envelope Open.
⭐ Can we add fa fa-envelope-open Icon in different sizes?Yes, you can Icon of fa fa-envelope-open in various pixels.
⭐ How to add a Blue color Font Awesome Envelope Open Icon?Add the blue color Envelope Open icon of the font awesome by using code: fa fa-envelope-open style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Envelope Open?To change the Envelope Open icon to white color use code: fa fa-envelope-open style='color: white;'.
Advertisements
Advertisements