Created
March 8, 2016 04:34
-
-
Save danwarfel/a6bfb6fc06a0a786bba4 to your computer and use it in GitHub Desktop.
Semantics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- bad --> | |
<div id="main"> | |
<div class="article"> | |
<div class="header"> | |
<h1>Blog post</h1> | |
<p>Published: <span>21st Feb, 2015</span></p> | |
</div> | |
<p>…</p> | |
</div> | |
</div> | |
<!-- good --> | |
<main> | |
<article> | |
<header> | |
<h1>Blog post</h1> | |
<p>Published: <time datetime="2015-02-21">21st Feb, 2015</time></p> | |
</header> | |
<p>…</p> | |
</article> | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment