This is probably a rookie question but I'm stuck with this and have gone through the troubleshooting steps here.
I am using a local copy of fontawesome-all.min.css
in my assets which I have imported in main.css
as follows:
@import url(fontawesome-all.min.css);
The fontawesome-all.min.css
has the fonts I am looking for fa-envelope
and fa-graduation-cap
. However, when I use them on my webpage, fa-envelope
renders but fa-graduation-cap
doesn't. Where am I going wrong?
<li><a href="#" class="fa-envelope"><span class="label">Email</span></a></li>
<li><a href="#" class="fa-graduation-cap"><span class="label">Google Scholar</span></a></li>