Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

display uninstalled font on a webpage [duplicate]

Possible Duplicate:
Non-Standard fonts in web?

I have created a Unicode font and I would like to use it on my webpage. I want people to see and read the font. Can they do it without installing the font? Something like run the font from server?

If I remember correctly, I have seen this long time back.

like image 229
GoodDude Avatar asked Dec 26 '22 15:12

GoodDude


1 Answers

You may do this using CSS3's @font-face feature. But you have to provide the necessary font formats.

FontSquirrel's @font-face Generator is a nice web tool that does all the dirty work for you. It is very easy to use and creates all the necessary files, including CSS stylesheets and a HTML example file.

What's really valuable is that it includes all formats and hacks needed to display the font in all major browsers, something which is not so easy to get right.

like image 108
rolve Avatar answered Dec 30 '22 11:12

rolve