Search Results
Font Awesome Message (Send, Chat, Mail)
Fontawesome Version 6.X
message
Web
<i class='fa-solid fa-message'></i>
React
<FontAwesomeIcon icon="fa-solid fa-message" />
Vue
<font-awesome-icon icon="fa-solid fa-message" />
message
Web
<i class='fa-solid fa-message' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-message" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-message" :style="{color: 'white'}" />
message
Web
<i class='fa-solid fa-message' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-message" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-message" :style="{color: 'red'}" />
message
Web
<i class='fa-solid fa-message' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-message" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-message" :style="{color: 'blue'}" />
message
Web
<i class='fa-solid fa-message' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-message" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-message" :style="{color: '#f3da35'}" />
FA Regular message Version 6.X
How to add Font Awesome message Icon ?
Font Awesome Icon fa solid fa message 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 message
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<i class='fa-solid fa-message'></i>
</body>
</html>
Tags
Send, chat bubble,text,message,comment,Communications,Mail
Change Font Awesome Icon Message 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-solid fa-message blue-color'></i>
<i class='fa-solid fa-message green-color'></i>
<i class='fa-solid fa-message teal-color'></i>
<i class='fa-solid fa-message yellow-color'></i>
<i class='fa-solid fa-message red-color'></i>
Output of the above example will be as below-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
Advertisements
Advertisements