I'm struggling to incorporate font-awesome icons in my Rails view. I had a static standalone HTML code snippet that I added into the Rails view:
<span class="icon-white">
<a href="https://twitter.com/xyz">
<i class="icon icon-twitter"></i>
</a>
</span>
I also included
<%= stylesheet_link_tag "icons.min.css" %>
in the same view. What am I missing here? How can I successfully integrate font-awesome icons into my Rails view?