Skip to content

Instantly share code, notes, and snippets.

@joeydsmith
Created November 5, 2014 20:29
Show Gist options
  • Save joeydsmith/0e0371a6feb1fac7b0f3 to your computer and use it in GitHub Desktop.
Save joeydsmith/0e0371a6feb1fac7b0f3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
</head>
<body>
<header>
<h1>Hello World!</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
</ul>
</nav>
</header>
<main>
<article>
<header>
<h2>It's a Wonderful Day</h2>
<time datetime="2014-11-01 19:00">November 2014</time>
</header>
<p>This is a great day.</p>
<p>Blue Skies, green grass</p>
<h3>Yes, it's great.</h3>
<p>For more reasons than one.</p>
</article>
</main>
<footer>
<aside>
<header>
<h3>Quick Links</h3>
</header>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
</ul>
</nav>
</aside>
<small>&copy; 2014 Hello World</small>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment