I have a standalone HTML document I want to distribute, without any external dependencies. I\'m using a non-standard font in this document that only some of my users will ha
Specify the local font name first in the css, then the embedded font name:
p { font-family: MyFontLocalName, MyFontEmbeddedName; }
http://jsfiddle.net/gilly3/xX6Bv/5/
If the MyFontLocalName is installed on the user's computer, that font will be used, otherwise MyFontEmbeddedName will be used.
MyFontLocalName
MyFontEmbeddedName