|
Donkey -> RE: cannot publish correct fonts (10/17/2005 6:58:32)
|
If you are using nonstandard fonts then people without those fonts installed on their computer will see the default font, usually Times New Roman. It is advisable to stick with 'standard fonts that are available on most computers and specify them as a font family e.g. p
{
font-family: arial, Verdana, sans-serif
} or for an inline style
<p style="font-family: arial, verdana, sans-serif"> Then if arial is available it will be used, if it isn't but verdana is that wil be used and if neither is available a simillar sans-serif font will be used. More information here
|
|
|
|