When I use the following code on my website, it works perfectly:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"/>
<i class="fa fa-bars" style="color: #ffffff;"></i>
However, if I try this code instead (and get a square icon):
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"/>
<i class="fa-thin fa-bars" style="color: #ffffff;"></i>
The source of this code is from: https://fontawesome.com/v6/icons/bars?f=classic&s=thin
I'm curious to know how to make fa-thin
work as intended.
Your assistance in resolving this issue would be greatly appreciated!