I have successfully integrated icon fonts into my simple web page.
Check it out on jsFiddle here
My design is similar to this example, but instead of bars, I see a snake icon displayed. How can I fix this issue with the fonts?
Here is the code snippet:
[data-icon]:before {
font-family: icons; /* Custom icon font used */
content: attr(data-icon);
speak: none;
}
<h4><span aria-hidden="true" data-icon="⇝"></span> Stats</h4>