Code Snippet posted by:
Kishon | Posted on: 9/18/2012 | Category:
HTML 5 Codes | Views: 508 | Status:
[Member] |
Points: 40
|
Alert Moderator
The HTML 5 specification has introduced a number of new elements that can (and should) be used instead of the <div> element. Examples of these new elements include <article>, <aside>, <header>, and <footer>, as well as others.
Therefore, the <div> element should generally be used as an extension mechanism which is used only if there isn't another suitable HTML element to use.
<article>
<header>
<h1>The Blog Entry Title</h1>
<p>12/25/2045</p>
</header>
<p>Blog entry</p>
<p>...</p>
<section>
<h1>Comments</h1>
<article>
<footer>
<p>Posted by: <span>Name of person</span></p>
<p>Time: 15 minutes ago</p>
</footer>
<p>Comment text here
/p>
</article>
<article>
<footer>
<p>Posted by: <span>Name of person</span></p>
<p>Time: 25 minutes ago</p>
</footer>
<p>Another comment here</p>
</article>
</section>
</article>
Alwin
Found interesting? Add this to: