View Single Post
  #3 (permalink)  
Old Oct 26th, 2007, 13:42
MikeHopley MikeHopley is offline
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Finding Appropriate Font Substitutes...

Don't forget that you can use CSS to specify a list of possible fonts:

Code: Select all
 font-family: Copperplate, Verdana, san-serif;
The browser will display Copperplate if it's installed; otherwise, it will display Verdana. If neither is installed, it will display the generic system san-serif font.
Reply With Quote