-1
There is a recommended way to convert and combine various icons in the format .svg
in a single source file (ttf
, woff
, etc.)?
I want to define a @font-face
and assign my font, so that I can use your icons in the same way that is used for example in "Font Awesome", assigning a class to an element <i>
:
<i class="meu-icone"></i>
And why bother? Why not use the same SVG? If it’s for compatibility, the support of the two is more or less the same. But if you really want to have online tools that do it for you
– Costamilam
@Costamilam I know I can use them all
.svg
, but I’d like to learn how it’s done.– Thiago Krempser
@Thiagokrempser I prefer to use as
font
than image, I use the Icomoon to generate the@font-face
ofSVG's
which I upload. If you think my answer was right for your question, just mark it with the "green check".– user148754