Forum Moderators: open
Using an external CSS file to control your page attributes, set your font code like the following:
body {
font-family: Bernhard Fashion, Verdana, san serif;
}
That way, if the surfer's software holds that font, it will be displayed, and if not it will default to the next selection, and if not that, it will default to the default san serif font in the their browser's options.
font-family: Bernhard Fashion, Verdana, san serif;
That last one should be sans-serif.
Also its a good idea to put quotes around the font with spaces in the name.
So the final line looks like..
body {
font-family: "Bernhard Fashion", Verdana, sans-serif;
}
Always include a generic CSS font as your final option (any one of serif, sans-serif, cursive, fantasy or monospace) that way browsers always have something to fallback on.
@media print {
BODY { font-size: 10pt }
}
@media screen {
BODY { font-size: 12pt }
}
Amy, I would probably choose something a bit easier to read for your content font. I do like Bernhard Fashion alot, in fact I used it on a few logos but when displayed at smaller sizes it may get tougher to follow. Plus, I don't have it on my pc, so I'm sure there are many others who don't as well.
[edited by: Birdman at 11:05 pm (utc) on May 1, 2003]
I usually prepare a web page and then make a list of the most common fonts and just switch them in and out until I find what I like.
Be sure to use CSS to style your pages and then you can change your font site-wide in minutes, or less.
From the webstyleguide.com:
"Choosing typefacesThe most conventional scheme for using typefaces is to use a serif face such as Times New Roman or Georgia for body text and a sans serif face such as Verdana or Arial as a contrast for headlines...
...The most useful fonts that ship with the Apple Macintosh and Microsoft Windows operating systems are reproduced here"
Hope it helps,
Birdman