<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The section element</title>
	<atom:link href="http://html5doctor.com/the-section-element/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com/the-section-element/</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Mon, 06 Feb 2012 20:26:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Ian</title>
		<link>http://html5doctor.com/the-section-element/#comment-21973</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sun, 29 Jan 2012 22:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-21973</guid>
		<description>Thanks Dr. Oli,

That flow chart will help a lot. I&#039;ve also been reading through other articles here and one at smashing.com that have helped me see that I was looking at things from the wrong perspective at times.  I&#039;ll read the common mistakes link you provided also.

I have been looking at section in terms of when a developer looks at my code it will be easy to spot the top, middle, bottom, sections and so on. These would be sections inside the main content wrap. So yeah, total misunderstanding on who I am trying to be semantic for, on my part. And maybe some misunderstanding of the definition of semantics too.

At any rate, it&#039;s making more sense as I read the articles here. You guys have a lot of good information.

Thanks</description>
		<content:encoded><![CDATA[<p>Thanks Dr. Oli,</p>
<p>That flow chart will help a lot. I&#8217;ve also been reading through other articles here and one at smashing.com that have helped me see that I was looking at things from the wrong perspective at times.  I&#8217;ll read the common mistakes link you provided also.</p>
<p>I have been looking at section in terms of when a developer looks at my code it will be easy to spot the top, middle, bottom, sections and so on. These would be sections inside the main content wrap. So yeah, total misunderstanding on who I am trying to be semantic for, on my part. And maybe some misunderstanding of the definition of semantics too.</p>
<p>At any rate, it&#8217;s making more sense as I read the articles here. You guys have a lot of good information.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oli Studholme</title>
		<link>http://html5doctor.com/the-section-element/#comment-21930</link>
		<dc:creator>Oli Studholme</dc:creator>
		<pubDate>Sun, 29 Jan 2012 13:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-21930</guid>
		<description>@Ian — If you’re finding it confusing, try the &lt;a href=&quot;http://html5doctor.com/resources/#flowchart&quot; rel=&quot;nofollow&quot;&gt;HTML5 Sectioning Element Flowchart&lt;/a&gt; for a quick overview.

&lt;blockquote&gt;If I have a literal top section and bottom section of different content&lt;/blockquote&gt;

How about &lt;a href=&quot;http://html5doctor.com/the-header-element/&quot; rel=&quot;nofollow&quot;&gt;&lt;code&gt;&lt;header&gt;&lt;/code&gt;&lt;/a&gt; and &lt;a href=&quot;http://html5doctor.com/the-footer-element-update/&quot; rel=&quot;nofollow&quot;&gt;&lt;code&gt;&lt;footer&gt;&lt;/code&gt;&lt;/a&gt;?

&lt;blockquote&gt;The semantic part comes in when another developer is reading the code and can see two sections with id’s of top-content and bottom-content.&lt;/blockquote&gt;

ID names are not semantic (no more than &lt;code&gt;&lt;!-- introductory content starts here --&gt;&lt;/code&gt;). If the &lt;em&gt;content&lt;/em&gt; is different, then the element will depend on what the content is. If you just want to &lt;em&gt;style&lt;/em&gt; it differently, there’s no need for &lt;code&gt;&lt;section&gt;&lt;/code&gt; — a &lt;code&gt;class&lt;/code&gt; on e.g. &lt;code&gt;&lt;p&gt;&lt;/code&gt;, a &lt;code&gt;class&lt;/code&gt; on a &lt;code&gt;&lt;div&gt;&lt;/code&gt; wrapping the content, or even &lt;code&gt;.entry p:first-of-type {…}&lt;/code&gt; as we do here are all better options.

&lt;blockquote&gt;As for trying to not use sections for styling, should I really have a redundant div around or inside a section to ensure I don’t use styles on the section?&lt;/blockquote&gt;

We mean &lt;em&gt;only use a &lt;code&gt;&lt;section&gt;&lt;/code&gt; when it’s semantically appropriate&lt;/em&gt;. You can definitely style them if you add them, just don’t add them solely as a style hook. Read more about this in &lt;a href=&quot;http://html5doctor.com/avoiding-common-html5-mistakes/#section-wrapper&quot; rel=&quot;nofollow&quot;&gt;Avoiding common HTML5 mistakes&lt;/a&gt;.

&lt;blockquote&gt;As for the article and sections inside it, when dealing with blog posts it makes sense to me to have section class=&quot;meta&quot; or something like that for the meta data about the post(author, date, etc.).&lt;/blockquote&gt;

A section inside an article should generally be a subsection of the article, with its own title. The “Avoiding common HTML5 mistakes” link above links to a subsection titled “Don’t use section as a wrapper for styling”. I’d add meta stuff to the article’s &lt;code&gt;&lt;header&gt;&lt;/code&gt; (or possibly &lt;code&gt;&lt;footer&gt;&lt;/code&gt;), probably just in &lt;code&gt;&lt;p&gt;&lt;/code&gt; for a single line.</description>
		<content:encoded><![CDATA[<p>@Ian — If you’re finding it confusing, try the <a href="http://html5doctor.com/resources/#flowchart" rel="nofollow">HTML5 Sectioning Element Flowchart</a> for a quick overview.</p>
<blockquote><p>If I have a literal top section and bottom section of different content</p></blockquote>
<p>How about <a href="http://html5doctor.com/the-header-element/" rel="nofollow"><code>&lt;header></code></a> and <a href="http://html5doctor.com/the-footer-element-update/" rel="nofollow"><code>&lt;footer></code></a>?</p>
<blockquote><p>The semantic part comes in when another developer is reading the code and can see two sections with id’s of top-content and bottom-content.</p></blockquote>
<p>ID names are not semantic (no more than <code>&lt;!-- introductory content starts here --></code>). If the <em>content</em> is different, then the element will depend on what the content is. If you just want to <em>style</em> it differently, there’s no need for <code>&lt;section></code> — a <code>class</code> on e.g. <code>&lt;p></code>, a <code>class</code> on a <code>&lt;div></code> wrapping the content, or even <code>.entry p:first-of-type {…}</code> as we do here are all better options.</p>
<blockquote><p>As for trying to not use sections for styling, should I really have a redundant div around or inside a section to ensure I don’t use styles on the section?</p></blockquote>
<p>We mean <em>only use a <code>&lt;section></code> when it’s semantically appropriate</em>. You can definitely style them if you add them, just don’t add them solely as a style hook. Read more about this in <a href="http://html5doctor.com/avoiding-common-html5-mistakes/#section-wrapper" rel="nofollow">Avoiding common HTML5 mistakes</a>.</p>
<blockquote><p>As for the article and sections inside it, when dealing with blog posts it makes sense to me to have section class=&#8221;meta&#8221; or something like that for the meta data about the post(author, date, etc.).</p></blockquote>
<p>A section inside an article should generally be a subsection of the article, with its own title. The “Avoiding common HTML5 mistakes” link above links to a subsection titled “Don’t use section as a wrapper for styling”. I’d add meta stuff to the article’s <code>&lt;header></code> (or possibly <code>&lt;footer></code>), probably just in <code>&lt;p></code> for a single line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://html5doctor.com/the-section-element/#comment-21573</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 25 Jan 2012 01:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-21573</guid>
		<description>Wow, this article and the comments are confusing. I tend to be thinking along the lines of Marcio&#039;s comments. 

When I think semantic I&#039;m thinking of viewing the code in a text editor and being able to envision how the page is laid out without having to look at the page in a browser. And it should be logical.

If I have a literal top section and bottom section of different content it doesn&#039;t mean I want to have a big heading for the user to see that says &quot;Top Section&quot; or &quot;bottom section&quot; because that would be stating the obvious as they will most likely be separated in some visual way with styling . The semantic part comes in when another developer is reading the code and can see two sections with id&#039;s of top-content and bottom-content.
As for trying to not use sections for styling, should I really have a redundant div around or inside a section to ensure I don&#039;t use styles on the section? I know that&#039;s not what you are saying, but I can&#039;t think of any section on a page that I would not apply some style to even it it&#039;s just a margin between sections. 

So, using a div for the wrap or container makes sense to me but then using a section for top and bottom sections makes more sense than using divs for semantics.

Up until now I thought that was the only reason for the section tag (semantics in the code). I would like to see some definitive guides on marking up for screen readers but at the moment I&#039;m just trying to wrap my head around semantic markup in general. 

As for the article and sections inside it, when dealing with blog posts it makes sense to me to have section class=&quot;meta&quot; or something like that for the meta data about the post(author, date, etc.).</description>
		<content:encoded><![CDATA[<p>Wow, this article and the comments are confusing. I tend to be thinking along the lines of Marcio&#8217;s comments. </p>
<p>When I think semantic I&#8217;m thinking of viewing the code in a text editor and being able to envision how the page is laid out without having to look at the page in a browser. And it should be logical.</p>
<p>If I have a literal top section and bottom section of different content it doesn&#8217;t mean I want to have a big heading for the user to see that says &#8220;Top Section&#8221; or &#8220;bottom section&#8221; because that would be stating the obvious as they will most likely be separated in some visual way with styling . The semantic part comes in when another developer is reading the code and can see two sections with id&#8217;s of top-content and bottom-content.<br />
As for trying to not use sections for styling, should I really have a redundant div around or inside a section to ensure I don&#8217;t use styles on the section? I know that&#8217;s not what you are saying, but I can&#8217;t think of any section on a page that I would not apply some style to even it it&#8217;s just a margin between sections. </p>
<p>So, using a div for the wrap or container makes sense to me but then using a section for top and bottom sections makes more sense than using divs for semantics.</p>
<p>Up until now I thought that was the only reason for the section tag (semantics in the code). I would like to see some definitive guides on marking up for screen readers but at the moment I&#8217;m just trying to wrap my head around semantic markup in general. </p>
<p>As for the article and sections inside it, when dealing with blog posts it makes sense to me to have section class=&#8221;meta&#8221; or something like that for the meta data about the post(author, date, etc.).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alohci</title>
		<link>http://html5doctor.com/the-section-element/#comment-20933</link>
		<dc:creator>Alohci</dc:creator>
		<pubDate>Tue, 20 Dec 2011 14:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-20933</guid>
		<description>@Dan G - The clue is in the headings. If you have a section (or article), then it should have a natural heading.

Ask yourself &quot;What is the natural heading of &quot;content-area&quot;. What text could you put there that a user viewing your web site would want to see?

In contrast, the natural headings of the 3 parts are provided in your question (well, two of them are) - &quot;About Me&quot; and &quot;Recent Work&quot;, so the sectioning elements should identify these boxes.

So your second arrangement is the correct one, although there is a good case for using &lt;article&gt; for each of the boxes rather than &lt;section&gt;.</description>
		<content:encoded><![CDATA[<p>@Dan G &#8211; The clue is in the headings. If you have a section (or article), then it should have a natural heading.</p>
<p>Ask yourself &#8220;What is the natural heading of &#8220;content-area&#8221;. What text could you put there that a user viewing your web site would want to see?</p>
<p>In contrast, the natural headings of the 3 parts are provided in your question (well, two of them are) &#8211; &#8220;About Me&#8221; and &#8220;Recent Work&#8221;, so the sectioning elements should identify these boxes.</p>
<p>So your second arrangement is the correct one, although there is a good case for using &lt;article&gt; for each of the boxes rather than &lt;section&gt;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan G</title>
		<link>http://html5doctor.com/the-section-element/#comment-20888</link>
		<dc:creator>Dan G</dc:creator>
		<pubDate>Mon, 19 Dec 2011 18:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-20888</guid>
		<description>Hey this section vs div argument is very complex in my opinion so I wanted to lay something out there and see what you all think.  I am building a new portfolio site.  The layout is going to be the top header , the middle layer, which will consist of 3 content boxes, and the footer ofcourse.

Now, there will be 3 content boxes in the middle.  They are going to be lined up horizontally across the page (Using the 960 grid system).  Each content box will have a title, such as one for about me, one for recent work, etc...  and the footer ofcourse.

Under the about me section, will have a h1 style for about me, and then content in a p tag underneath it.  And the same for the other two.  1 ) Would practical use be to wrap the middle area in a whole section in itself and then use 3 div containers for the content boxes inside of the &quot;section&quot;? or 2 ) Have three seperate section elements for the 3 content boxes inside a div tag and just add classes to them?  For examples.

Number one would look like this &gt;
&lt;code&gt;
&lt;section id=&quot;content-area&quot;&gt;
     &lt;div id=&quot;about-me&quot;&gt;
          &lt;h1&gt; About me &lt;/h1&gt;
                 &lt;p&gt;..... &lt;/p&gt;
                 &lt;p&gt;..... &lt;/p&gt;
      &lt;/div&gt;

     &lt;div id=&quot;box-2&quot;&gt;
          &lt;h1&gt; box2 &lt;/h1&gt;
                 &lt;p&gt;..... &lt;/p&gt;
                 &lt;p&gt;..... &lt;/p&gt;
      &lt;/div&gt;

     &lt;div id=&quot;box-3&quot;&gt;
          &lt;h1&gt; box3 &lt;/h1&gt;
                 &lt;p&gt;..... &lt;/p&gt;
                 &lt;p&gt;..... &lt;/p&gt;
      &lt;/div&gt;

&lt;/section&gt;
   
&lt;/code&gt;

Or would number 2 be more practical 

&lt;code&gt;
&lt;div id=&quot;content-area&quot;&gt;
     &lt;section id=&quot;about-me&quot;&gt;
          &lt;h1&gt; About me &lt;/h1&gt;
                 &lt;p&gt;..... &lt;/p&gt;
                 &lt;p&gt;..... &lt;/p&gt;
      &lt;/section&gt;

     &lt;section id=&quot;box-2&quot;&gt;
          &lt;h1&gt; box2 &lt;/h1&gt;
                 &lt;p&gt;..... &lt;/p&gt;
                 &lt;p&gt;..... &lt;/p&gt;
      &lt;/section&gt;

     &lt;section id=&quot;box-3&quot;&gt;
          &lt;h1&gt; box3 &lt;/h1&gt;
                 &lt;p&gt;..... &lt;/p&gt;
                 &lt;p&gt;..... &lt;/p&gt;
      &lt;/section&gt;

&lt;/div&gt;
   
&lt;/code&gt;

If you could please help me I would greatly appreciate it.  I&#039;m trying to become more proficient in html5 but this one element is holding me back : (. 

P.S.  If you know a better way of doing what I have mentioned, help would be appreciated  ;)</description>
		<content:encoded><![CDATA[<p>Hey this section vs div argument is very complex in my opinion so I wanted to lay something out there and see what you all think.  I am building a new portfolio site.  The layout is going to be the top header , the middle layer, which will consist of 3 content boxes, and the footer ofcourse.</p>
<p>Now, there will be 3 content boxes in the middle.  They are going to be lined up horizontally across the page (Using the 960 grid system).  Each content box will have a title, such as one for about me, one for recent work, etc&#8230;  and the footer ofcourse.</p>
<p>Under the about me section, will have a h1 style for about me, and then content in a p tag underneath it.  And the same for the other two.  1 ) Would practical use be to wrap the middle area in a whole section in itself and then use 3 div containers for the content boxes inside of the &#8220;section&#8221;? or 2 ) Have three seperate section elements for the 3 content boxes inside a div tag and just add classes to them?  For examples.</p>
<p>Number one would look like this &gt;<br />
<code><br />
&lt;section id="content-area"&gt;<br />
     &lt;div id="about-me"&gt;<br />
          &lt;h1&gt; About me &lt;/h1&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
      &lt;/div&gt;</code></p>
<p>     &lt;div id="box-2"&gt;<br />
          &lt;h1&gt; box2 &lt;/h1&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
      &lt;/div&gt;</p>
<p>     &lt;div id="box-3"&gt;<br />
          &lt;h1&gt; box3 &lt;/h1&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
      &lt;/div&gt;</p>
<p>&lt;/section&gt;</p>
<p></p>
<p>Or would number 2 be more practical </p>
<p><code><br />
&lt;div id="content-area"&gt;<br />
     &lt;section id="about-me"&gt;<br />
          &lt;h1&gt; About me &lt;/h1&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
      &lt;/section&gt;</code></p>
<p>     &lt;section id="box-2"&gt;<br />
          &lt;h1&gt; box2 &lt;/h1&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
      &lt;/section&gt;</p>
<p>     &lt;section id="box-3"&gt;<br />
          &lt;h1&gt; box3 &lt;/h1&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
                 &lt;p&gt;..... &lt;/p&gt;<br />
      &lt;/section&gt;</p>
<p>&lt;/div&gt;</p>
<p></p>
<p>If you could please help me I would greatly appreciate it.  I&#8217;m trying to become more proficient in html5 but this one element is holding me back : (. </p>
<p>P.S.  If you know a better way of doing what I have mentioned, help would be appreciated  <img src='http://html5doctor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oli Studholme</title>
		<link>http://html5doctor.com/the-section-element/#comment-20759</link>
		<dc:creator>Oli Studholme</dc:creator>
		<pubDate>Sat, 17 Dec 2011 02:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-20759</guid>
		<description>@Mike — also &lt;a href=&quot;http://oli.jp/2011/ids/&quot; rel=&quot;nofollow&quot;&gt;why use IDs?&lt;/a&gt; ;)</description>
		<content:encoded><![CDATA[<p>@Mike — also <a href="http://oli.jp/2011/ids/" rel="nofollow">why use IDs?</a> <img src='http://html5doctor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bruce</title>
		<link>http://html5doctor.com/the-section-element/#comment-20660</link>
		<dc:creator>bruce</dc:creator>
		<pubDate>Thu, 15 Dec 2011 07:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-20660</guid>
		<description>Mike

for the &quot;why&quot; see my article on HTML5 semantics http://coding.smashingmagazine.com/2011/11/18/html5-semantics/

&quot;why don’t I just continue to use DIVs with clearly labelled IDs&quot;

you can if you want to. But see above.</description>
		<content:encoded><![CDATA[<p>Mike</p>
<p>for the &#8220;why&#8221; see my article on HTML5 semantics <a href="http://coding.smashingmagazine.com/2011/11/18/html5-semantics/" rel="nofollow">http://coding.smashingmagazine.com/2011/11/18/html5-semantics/</a></p>
<p>&#8220;why don’t I just continue to use DIVs with clearly labelled IDs&#8221;</p>
<p>you can if you want to. But see above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://html5doctor.com/the-section-element/#comment-20637</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 14 Dec 2011 22:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-20637</guid>
		<description>I just can&#039;t see any benefit in bothering to use the &quot;SECTION&quot; or &quot;ASIDE&quot; tags. Since these tags do not affect the way anything is displayed by a browser, they appear to be purely for &quot;trying&quot; to give an indication to a coder how the page content is related (or not). 

If that is it&#039;s only purpose, then why don&#039;t I just continue to use DIVs with clearly labelled IDs?</description>
		<content:encoded><![CDATA[<p>I just can&#8217;t see any benefit in bothering to use the &#8220;SECTION&#8221; or &#8220;ASIDE&#8221; tags. Since these tags do not affect the way anything is displayed by a browser, they appear to be purely for &#8220;trying&#8221; to give an indication to a coder how the page content is related (or not). </p>
<p>If that is it&#8217;s only purpose, then why don&#8217;t I just continue to use DIVs with clearly labelled IDs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhanesh mane</title>
		<link>http://html5doctor.com/the-section-element/#comment-19208</link>
		<dc:creator>dhanesh mane</dc:creator>
		<pubDate>Sun, 27 Nov 2011 18:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-19208</guid>
		<description>hey thanks a lot for the article link, I like it a lot, It makes things very clear as of now I am still not planning to have section tag on my website, but surely going to try it in my next website which I want to make fully HTML5.

Thanks
Dhanesh Mane</description>
		<content:encoded><![CDATA[<p>hey thanks a lot for the article link, I like it a lot, It makes things very clear as of now I am still not planning to have section tag on my website, but surely going to try it in my next website which I want to make fully HTML5.</p>
<p>Thanks<br />
Dhanesh Mane</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oli Studholme</title>
		<link>http://html5doctor.com/the-section-element/#comment-19199</link>
		<dc:creator>Oli Studholme</dc:creator>
		<pubDate>Sun, 27 Nov 2011 13:04:31 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=858#comment-19199</guid>
		<description>@dhanesh mane — If you’re still confused try comparing this post to &lt;a href=&quot;http://html5doctor.com/the-article-element&quot; rel=&quot;nofollow&quot;&gt;our post on the &lt;code&gt;&lt;article&gt;&lt;/code&gt; element&lt;/a&gt;.

&lt;a href=&quot;http://html5doctor.com/html5-seo-search-engine-optimisation/&quot; rel=&quot;nofollow&quot;&gt;There are &lt;strong&gt;no&lt;/strong&gt; SEO problems with using multiple &lt;code&gt;&lt;h1&gt;&lt;/code&gt; elements&lt;/a&gt;, and having multiple &lt;code&gt;&lt;h1&gt;&lt;/code&gt; elements has &lt;strong&gt;always&lt;/strong&gt; been valid. However, &lt;a href=&quot;http://html5doctor.com/outlines/&quot; rel=&quot;nofollow&quot;&gt;you shouldn’t use multiple &lt;code&gt;&lt;h1&gt;&lt;/code&gt; elements for now&lt;/a&gt; because that style currently isn’t well supported e.g. by screen readers.</description>
		<content:encoded><![CDATA[<p>@dhanesh mane — If you’re still confused try comparing this post to <a href="http://html5doctor.com/the-article-element" rel="nofollow">our post on the <code>&lt;article></code> element</a>.</p>
<p><a href="http://html5doctor.com/html5-seo-search-engine-optimisation/" rel="nofollow">There are <strong>no</strong> SEO problems with using multiple <code>&lt;h1></code> elements</a>, and having multiple <code>&lt;h1></code> elements has <strong>always</strong> been valid. However, <a href="http://html5doctor.com/outlines/" rel="nofollow">you shouldn’t use multiple <code>&lt;h1></code> elements for now</a> because that style currently isn’t well supported e.g. by screen readers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

