Do you avoid the H1 tag?
Friday September 21, 2007
I know people who avoid this HTML construction like the plague:
<h1>Headline</h1>Why? Because it's big, bold, and ugly. Sure, if that's all you type, you'll end up with a headline that looks more like this than a headline that fits with the style and structure of your Web site. But isn't that what CSS is for? When you started using CSS to style your fonts and adjust the text that includes things like headlines. So, don't hide from the headlines - embrace them. Search engines love them, and you should too, just make sure they aren't big, bold, and ugly.


Comments
I LOVE H1,H2,H3 tags etc! Headline tags make the webpage have style, emphasis and definition. You can style these tags to any size, add a background color or underline and so many things. And yes indeed, search engines love em!
A good thing to do when creating a web site in order to help make it look the same in multiple browsers it to reset all of the default styles for the document. When you do this the h1 tag looks like regular text and then you just style it up from there setting the px size, color, borders, etc. So something like…
body{
padding:0;
margin:0;
background:0;
font-size:12px;
….
}
I’m interested in why search engines like them!
Hi,
Nice article!
But just thought you should know your own site on this article displays NULL OBJECTS in IE.7.0.
Regards,
TG
“Thank goodness for the Web”
The reason search engines like them is because semantic markup is to be encouraged. robots need all the cues they can get about a website. Flash is rubbish for that.
Does anyone know the full list of CSS properties required to ‘reset’ the heading tags? i think the above list misses out ‘font’ as one. what about line height?