far fa comment

In this, we learn how to show comment icon in font awesome, How do i increase its size and change color.

Use this icon using its unicode.

far fa-comment
<i class="far fa-comment"></i>
Example

far fa-comment

increase icon size using inline css

increase icon size using font awesome classes

change icon color using inline css

use icon with html button tag

spin icon using font awesome fa-spin class

using unicode

Full Code
<!Doctype html>
<html>
<head>
	<title>font awesome comment icon</title>
	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
	<h1 align="center">far fa-comment</h1>
	<p>increase icon size using inline css</p>
	<p>
        <i class="far fa-comment"></i> 
        <i class="far fa-comment" style="font-size:20px"></i>
        <i class="far fa-comment" style="font-size:30px"></i>
        <i class="far fa-comment" style="font-size:40px"></i>
        <i class="far fa-comment" style="font-size:50px"></i>
	</p>
	<p>increase icon size using font awesome classes</p>
	<p>
        <i class="far fa-comment"></i> 
        <i class="far fa-comment fa-2x"></i>
        <i class="far fa-comment fa-3x"></i>
        <i class="far fa-comment fa-4x"></i>
        <i class="far fa-comment fa-5x"></i>
	</p>
	<p>change icon color using inline css</p>
	<p>
        <i class="far fa-comment"></i>
        <i class="far fa-comment fa-2x" style="color:red"></i> 
        <i class="far fa-comment fa-3x" style="color:blue"></i>
        <i class="far fa-comment fa-4x" style="color:green"></i>
	</p>
	<p>use icon with html button tag</p>
	<p><button><i class="far fa-comment" style="font-size:20px"></i> button</button></p>
	<p>spin icon using font awesome fa-spin class</p>
	<p><i class="far fa-comment fa-spin" style="font-size:30px"></i></p>
	<p>using unicode</p>
	<p><i class="far" style="font-size:25px"> &#xf075; </i></p>
</body>
</html>
Icon With Select Tag

With Select Tag

Code
<h1 align="center">with select tag</h1>
<select style="width:100%;height:50px">
	<option>check icon</option>
	<option class="far" style="font-size:25px"> &#xf075; far fa-comment</option>
</select>
Icon With Textarea Tag

With Textarea Tag

Code
<h1 align="center">with textarea tag</h1>
<textarea class="far" style="width:100%;height:60px"> &#xf075; far fa-comment</textarea>
Icon With Anchor Tag

With Anchor Tag

far fa-comment
Code
<h1 align="center">with anchor tag</h1>
<a href="#"><i class="far fa-comment"></i> far fa-comment</a>

More icons

×