Quote Originally Posted by rstevenson View Post
Well, you'd set the fonts you prefer for the various page elements in your stylesheet. But as I said, if a font you specify isn't on the visitor's hard drive, it won't display, and they'll see one of the fallback fonts you specify.

So how common is Edwardian Script?

Try changing this in your stylesheet...
Code:
#tagline
{
color: #000000;
font-size: 6em;
text-align: center;
vertical-align: middle;
}
to this...
Code:
#tagline
{
color: #000000;
font-family: 'Edwardian Script', cursive;
font-size: 6em;
text-align: center;
vertical-align: middle;
}
Rob
Awsome, that's exactly what I was looking for.
Is there a place where I can get all the tags that are available for use on this site or is it just what ever goes in any stylesheet?