Forum Moderators: open
BTW: Why not use styles? the <font> tag is being deprecated in newer versions of html. the code:
<h1 style="font-size:80%">Hello</h1>
will do the same exact thing, and it validates HTML 4.01 Transitional. However, I couldn't tell you whether or not the SEO aspect is the same.
bekyed - I hate how sites "pop in" when they use CSS. The plain text shows up, and then when the style sheet is loaded, the design pops in around it and formats everything properly. Plus using font tags guarantees browser compatibility. I do realize I'm in the minority on this though, in fact, I don't recall any other designers who feel the same way. Basically, it seems to me CSS is better for the coder and not using CSS is better for the user. Why do you say CSS is better for SEO? Is it because a smaller amount of code is used?
CSS is actually better for the user. If done correctly, it can also make page layout redesigns easier. My preference is to use an external style sheet rather than inline it. I stay away from deprecated tags like the font one.