I'm having a problem loading my font via css
I'm using font awesome 5
I'm implementing icones via content
on css
but the icon I want to use is not working that would be the icon link I want to use F0da but he does not want to appear and the funniest thing is that if he uses this code for example he appears f007
do not know what can be follow my code to analyze and link import
of the icon library:
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
HTML:
<div class="col-md-4">
<span class="text-uppercase text-white">Categoria</span>
<ul class="nav flex-column links-categories">
<li class="nav-item"><a href="#" class="nav-link">Açougues<span>(45)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Adegas e bebidas<span>(64)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Água Mineral<span>(49)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Avícolas<span>(52)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Bar e lanches<span>(214)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Bombonieres<span>(7)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Buffets<span>(33)</span></a></a></li>
<li class="nav-item"><a href="#" class="nav-link">Cafeterias<span>(68)</span></a></a></li>
</ul>
</div>
SCSS:
.links-categories{
li{
position: relative;
&:before{
content:"\f0da";
font-family: 'Font Awesome 5 Free';
position: absolute;
left: -20px;
top: 0;
color: $orange;
}
a{
font-size: 14px;
padding: 0;
}
}
}
Here is the print of how the caret icon I want to use is:
itdoesnotworkhoweverifIusethiscodeheref007
itworks: