Created
August 31, 2009 17:40
-
-
Save orderedlist/178597 to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Standard Blog</title> | |
</head> | |
<body> | |
<header> | |
<h1><a href="#">Standard Blog</a></h1> | |
</header> | |
<nav> | |
<ul> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">Archives</a></li> | |
<li><a href="#">About</a></li> | |
<li><a href="#">Contact</a></li> | |
</ul> | |
</nav> | |
<section> | |
<article> | |
<header> | |
<h1><a href="#">Title</a></h1> | |
</header> | |
<section> | |
<p>Lorem ipsum...</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1><a href="#">Title</a></h1> | |
</header> | |
<section> | |
<p>Lorem ipsum...</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1><a href="#">Title</a></h1> | |
</header> | |
<section> | |
<p>Lorem ipsum...</p> | |
</section> | |
</article> | |
</section> | |
<footer> | |
<p>Copyright © 2008 All Rights</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment