Forum Moderators: Robert Charlton & goodroi
[edited by: goodroi at 11:13 am (utc) on Jun 4, 2014]
[edit reason] Fixed URL [/edit]
Let's say you've got five different H1 headlines on a page. That may be allowed by the HTML 5 spec, but it isn't going to help Google figure out what the page is about. As far as the algorithm is concerned, those five different H1 headlines are sending mixed messages.
Please provide a source since MC says it's not a problem.
MC says it's not a problem
you don't want to overdo it
But if the HTML5 markup is correct then there should be NO LIMIT on the number of <h1> tags. If the document has ten <sections> then each one should be able to have an <h1>.
Please provide a source since MC says it's not a problem.
So the comment of netmag hits the point in my eyes: Having several h1s is basically o.k. and you won't be punished, but if you want to be sure having the optimum... make it as clear and logical as possible.
The thread below mentions the NY Times and the ?pagewanted=all query string.
[webmasterworld.com...]
The New York Times returns an entire article instead of a partial article when it receives this query string.
Since Feb. 2011, Googlebot has been randomly tacking this string on to queries to my sites. I have verified that these requests come from legitimate Google IP addresses. As mentioned in the thread above I don't think there are inbound links to my sites with this query string. The requests for various pages are just too random.
Thought this might be a useful tidbit of information regarding pagination.
You may want to emulate the Times.
Title: Do It Yourself Hardware & Tools
H1: Lumber
H1: Screws, Nails, Fasteners
H1: Hand Tools
H1: Power Tools
See now I would structure that with an H1 for the Do It Yourself Hardware & Tools, and all the others would be H2s.
Personally I prefer doing it like W3C says and being consistent. So every page has one H1 and some H2s und H3s. H1 and title tag differ, but are similar.
I'd rather follow deeper's example and rely on best practices...
The first element of heading content in an element of sectioning content represents the heading for that section. Subsequent headings of equal or higher rank start new (implied) sections, headings of lower rank start implied subsections that are part of the previous one. In both cases, the element represents the heading of the implied section.
For example, the following is correct:
<body>
<h4>Apples</h4>
<p>Apples are fruit.</p>
<section>
<h2>Taste</h2>
<p>They taste lovely.</p>
<h6>Sweet</h6>
<p>Red apples are sweeter than green ones.</p>
<h1>Color</h1>
<p>Apples come in various colors.</p>
</section>
</body>
However, the same document would be more clearly expressed as:
<body>
<h1>Apples</h1>
<p>Apples are fruit.</p>
<section>
<h2>Taste</h2>
<p>They taste lovely.</p>
<section>
<h3>Sweet</h3>
<p>Red apples are sweeter than green ones.</p>
</section>
</section>
<section>
<h2>Color</h2>
<p>Apples come in various colors.</p>
</section>
</body>
Both of the documents above are semantically identical and would produce the same outline in compliant user agents.
This third example is also semantically identical, and might be easier to maintain (e.g. if sections are often moved around in editing):
<body>
<h1>Apples</h1>
<p>Apples are fruit.</p>
<section>
<h1>Taste</h1>
<p>They taste lovely.</p>
<section>
<h1>Sweet</h1>
<p>Red apples are sweeter than green ones.</p>
</section>
</section>
<section>
<h1>Color</h1>
<p>Apples come in various colors.</p>
</section>
</body>
Source: http://www.w3.org/html/wg/drafts/html/master/sections.html#headings-and-sections