I see that WebFonts can now be replaced with SVG. I alwaus used a bit of CSS to pull WebFonts into un-ordered lists. Like so:
ul.capital li::before {
content: “\f00c”;
font-family: FontAwesome;
padding: 0 8px 0 0;
color:#c3d96a;
font-size:14px;
font-weight:900;
margin-left: -1.6em;
}
I have scoured the web and cant seem to find a way to do this with SVG icons. Am I missing something simple? I typically use FontAwesome in my CSS, as that is auto-loaded when using WebFonts. SVG has me a little baffled.