Comments on ! HTML/CSS Cheat Sheet All Comments

woah thank you, this has been super helpful
one question though, how can i change the color of those icon things? ive got <i class=" fas fa-star"></i> but i cant figure out how to change its color

I'm glad its helping!

These icons work the same way as text, so you can use bootstrap colors: like this:

<i class=" fas fa-star text-warning"></i>

For this:

Or by style, like this:

<i class=" fas fa-star" style="color: #a16bd6"></i>

For this:

thank you, that's super useful ^^ I appreciate the help :]