Forum Moderators: phranque
I know this is webmaster 101 stuff ... but there you go. That's where I am at!
All things being equal H1 tags are generally too large for conventional web development. They can be controlled via CSS. For instance you can specify that anything in an H1 tag show as smaller font.
>>I know this is webmaster 101 stuff
It took me forever to remember which was the big one and which was the small one ;)
<p><font size="3" color="#000066" class="ContentText"><b>ASA BASIC KEELBOAT SAILING STANDARD</b> </font></p>
How would I write the new tag?
Thanks Mivox. I feel more encouraged now ... but I *want* that keyword advantage to pay off for me wherever I can do it without breaking any accepted rules of the various SE's.
You may have guessed by now that I like to research this wonderful search feature we have here at Webmaster World. I discovered some information that may benefit you from previous discussions. You're all gonna start thinking I'm a nut. I only have 300 posts in over a year because I spend an hour or so on each one. Call me crazy but I love it and I hope this helps.
Remember, there's no such thing as a dumb question just dummies that don't ask!
H1 tags with NO margin-bottom, cross browser [webmasterworld.com]
optimization - hidden layers [webmasterworld.com] hidden H1 tags
CSS Cascading Style Sheets [searchengineworld.com]
Heading Tag [searchengineworld.com]
Once I got the hang of it, I didn't find the CSS to be much of a hassle. You can make H tags render exactly the same as plain-old bold headings. Here's a thread that covers how to eliminate the extra line under the H tag [webmasterworld.com].
With <H> tags and modifying font tags, I was told long ago to keep the font tags nested outside the <H> tags, rather than within them. DW puts them inside, but when I hand code I put them outside and sometimes modify the DW code.
Seriously, Braille readers and speech synthesizers emphasize things depending on the tag. As such, <b> has a different connotation than <strong>. They see <b> as a bolded word and <strong> as an important word.
With the <H> tag, they should follow a specific order within the category they cover. Say your category has header section and four subsections and your first <H> tag is <H2>. The next for the subsections should be <H3> or something smaller: <H4>, <H5> or <H6>. All the subsections can be the same <H> tag, but you shouldn't go <H3> then <H4> then back to <H3> because it will interpret the <H4> as a new section. Make sense? Since I tend to give visual examples - I use to be a teacher among other things - it goes like this:
TOPIC-
<H2>
<H3>
<H3>
<H4>
NEW TOPIC -
<H2>
<H3>
<H4>
<H5>
and so on....
WAI also emphasizes not to use <H> tags merely to bold things.
Heading tags have nothing to do with size, they signify the importance of the text which follows. The size thing comes from browser companies, not specifications. Headings should be used to headline the text which follows. For example:
<h1>Heading Main Topic</h1>
This is the area of the page which is most important to what the page's main topic is.
<h2>Sub Heading of the Page</h2>
This is where supporting topcs would be for the page.
<h3>Related Heading</h3>
Put some stuff related to your topic for this page here
--------------
Never put them out of order, such as using an H1 and H3 only skipping the H2.
Never use more than 1 instance of any heading on a page.
Don't ever nest any tag inside a heading before your keywords you want to get relevance for! For instance:
<h1><font>some text</font></h1>
the above code just got relevance for being in a font tag, not in a heading. Besides, it breaks the rules for html specifications.
Never put a heading on a page without any text following it. Such as:
<h1>spamming keywords</h1>
<h2>more spam</h2>
<h3>smaller size heading</h3>
this is the body of my page.
The H1 and H2 tags will basically be ignored and you got boned for bad code.
Your headings and the body sections which follow the headings should be in a logical structure. You need to think of headings as part of the structure of a page, not a text portion. Your headings are the break points in the structure of your body section. Your headings need to summarize your text sections, as this is why a search engine gives weight to the words in them (logically). If you follow W3C specifications for writing pages, rankings at search engine are much easier. When a search engine writes an algo, they start with the specifications!!!
"Experience has shown that separating the structure of a document from its presentational aspects reduces the cost of serving a wide range of platforms, media, etc., and facilitates document revisions"
The above quote is talking about style sheets, use them and use them often.
Quoted from
[w3.org...]
(edited by: Marcia at 6:18 am (gmt) on Oct. 11, 2001