Miklos said:
http://www.dancefreak.com/videos/index.htm
Why is it that some lines are coming up Times Roman in Firefox?
If I would use a style for the font--should I set it for {html} or
{body} or what?
I need to use verdana for the entire page.
You have a mixture of fonts, even in IE6. Those that are verdana are
specified <font face="Verdana">. It is possible that Times Roman occurs when
there is no spec. (i.e. it is the default)
Perhaps you need to remove all font specs from the HTML and put it in a
style sheet.
I would suggest
body { font-family: verdana,arial,helvetica,sans-serif;}
This can be placed in the <head> section
e.g.
<head>
..........
<style type="text/css">
body { font-family: verdana,arial,helvetica,sans-serif;}
</style>
..........
</head>
or it can be put in an external style sheet, say style.css which is linked
in the <head> section
<head>
..........
<link rel="stylesheet" type="text/css" href="style.css" />
.........
</head>
One problem is that there are 265 occurrences of the word 'font' on your
page. It would need a lot of work to track all these down. But maybe by
putting Verdana as a style spec for the body, you can leave everything else
as is.