Putting icons with Font Awesome Icons in different sizes
An example of putting icons with Font Awesome Icons in different sizes.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<p>Icon -
<i class="fa fa-leaf"></i>
</p>
<p>Icon -
<i class="fa fa-leaf fa-2x"></i>
</p>
<p>Icon -
<i class="fa fa-leaf fa-5x"></i>
</p>
</body>
</html>