How do I include a Font Awesome icon in my SVG image?
i is not valid SVG. You need to include the actual character that displays the icon. If you take a look at font awesome’s stylesheet you will see… .icon-group:before { content: “\f0c0”; } .icon-link:before { content: “\f0c1”; } .icon-cloud:before { content: “\f0c2”; } .icon-beaker:before { content: “\f0c3”; } .icon-cut:before { content: “\f0c4”; } .icon-copy:before { … Read more