CSS Font Awesome icon Colors

  • Post category:CSS

Get the code of CSS Font Awesome icon Colors and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<i class="fa fa-cloud one"></i>
<i class="fa fa-cloud two"></i>
<i class="fa fa-cloud three"></i>
<i class="fa fa-cloud four"></i>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
.one {
  color: red;
}
.two {
  color: green;
}
.three {
  color: blue;
}
.four {
  color: yellow;
}