Do HTML5 Elements Affect Search Engines?

Let me first say that I do not want to start a fiery war :-)

I am aware of the semantic meaning that tags, such as <article>, give a document, but what benefits does it receive from their use?

Do search engines look at them differently? If not, what other benefits are there?

+5
source share
3 answers

AQ + A at the Google Webmaster Center seems to suggest that the new HTML5 semantic elements have no impact at the moment, but at some point in the future:

http://www.google.com/support/forum/p/Webmasters/thread?tid=2d4592cbb613e42c&hl=en

+2
source

, , . , , , .

. -, HTML 4.01. :

<div class="post">
<h1>Example Blog Post</h1>
   <div class="entry">
      <p>Blog text goes here...</p>
   </div>
   <div class="entryFooter">
      <p> Posted in example category.</p>
   </div>
</div>

, :

<article>
   <header>
      <h1>Example Blog Post</h1>
   </header>
   <p>Blog text goes here...</p>
   <footer>
      <p>Posted in example category.</p>
   </footer>
</article>

, , .

+2

All Articles