SniderDK, on 21 January 2012 - 11:26 PM, said:
its a new standard... new rules

except the golden rule.... DONT SPAM...
think semantically the below is "correct"
<article>
<header>
<h1>title of post</h1>
<p>blog post</p>
</header>
<p>...Lorem Ipsum dolor set amet...</p>
</article>
Yeah this is the structure I've gone with in the design I'm working on. So search engines no longer look to the H tags for a title hierarchy?
At the moment I'm working on a structure of:
h1 - page title
h2 - page sub-title
h3 - section title (eg, latest posts)
h4 - article title (becomes page title in a blog post)
h5 - article sub title (becomes page sub-title in a blog post)
So the correct way to do it now (both semantically and from an SEO point of view) would be to?:
<header>
h1 - page title
h2 - page sub-title
</header>
h1 - section title (eg, latest posts)
<section>
<article>
<header>
h1 - article title (becomes page title in a blog post)
h2 - article sub-title (becomes page sub-title in a blog post)
</header>
<p> ...Lorem Ipsum dolor set amet...</p>
</article>
<article>
<header>
h1 - article title (becomes page title in a blog post)
h2 - article sub-title (becomes page sub-title in a blog post)
</header>
<p> ...Lorem Ipsum dolor set amet...</p>
</article>
</section>