Created
December 13, 2010 13:24
-
-
Save abitgone/738992 to your computer and use it in GitHub Desktop.
Existing XHTML pattern – how should it be marked up in HTML5?
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
<div id="featured"> | |
<div id="events"> | |
<h3>News, Events and Offers</h3> | |
<ul class="updates"> | |
<!-- ... --> | |
</ul> | |
</div> | |
<div id="usedcars"> | |
<h3>Featured Used Cars</h3> | |
<ul class="vehicles"> | |
<!-- ... --> | |
</ul> | |
</div> | |
<div id="newcars"> | |
<h3>Featured New Cars</h3> | |
<ul class="vehicles"> | |
<!-- ... --> | |
</ul> | |
</div> | |
<div id="jobs"> | |
<h3>Featured Jobs</h3> | |
<ul class="jobs"> | |
<!-- ... --> | |
</ul> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment