Forum Moderators: open
But, that is only for preview purposes on a local machine when a font is not specified. If served from the web (or even from a server on a local machine such as IIS), the user's browser preferences will prevail.
The only thing included in the basic FP html is the charset--no font tags or any other type of styling is included, as in this bare-bones FP-generated code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>now is the time</title>
</head>
<body>
now is the time
</body>
</html>
So, without font information the browser will fall back on what its preferences are. To display the fonts you want in a page you have to spec the font in either the html or using css.
I skipped over FP 2002, so don't know what support it has for templates, you might want to look into that. Otherwise, simply linking to an external CSS stylesheet will help a bunch:
<link rel="stylesheet" type="text/css" href="yourstylesheet.css">
Frontpage has pretty good support for CSS. I'd recommend popping over to the experts at the W3C [w3c.org] and start getting a handle on the formatting properties in CSS1.