: How to export font names as web font names in Adobe Illustrator CC I'm trying to see if there's a quick and dirty way to export Adobe Illustrator files as SVGS that use the web font names
I'm trying to see if there's a quick and dirty way to export Adobe Illustrator files as SVGS that use the web font names on my company's website instead of the system font names on my machine. Is there a basis script that can do this?
Thanks.
More posts by @Lee3735518
1 Comments
Sorted by latest first Latest Oldest Best
As mentioned by Cai, you can define the css font-name to anything you like.
font-family
Specifies a name that will be used as the font face value for font properties. MDN - @font -face
If the design you are integrating with references a font called MagicalFont it might be defined as
@font -face {
font-family: MagicalFont;
src: url(MagicalFont.ttf);
}
To update this to use your new illustrator font you can simply change the path reference to the font file.
@font -face {
font-family: MagicalFont;
src: url('Magical Illustrator Font.ttf');
}
The CSS will still function, anything defined to use font-family: MagicalFont will now be updated to the new font.
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2025 All Rights reserved.