Is there a way to determine over the web if a user has a particular font installed?
|
|
|||
|
|
|
|
It's probably best to stick to the most common fonts, using fallbacks. The following CSS snippet uses Helvetica (Mac) if available, then FreeSans (Linux), then Arial (Windows), then the user's default sans-serif font if none of those are present (a very rare occurrence).
Another option is to use progressive enhancement with @font-face with your chosen font, which is supported by Firefox 3.5, Opera 10, and (I think) Safari. See this article at Mozilla for details. |
||
|
|
|
There is no way to do this from the server. Your best chance will be to perform a check client side (e.g. in JavaScript). See this article for example Edit: I did a little more digging and found a better thought through implementation of the same technique by Luke Smith. |
||||||
|
