Skip to content

Instantly share code, notes, and snippets.

@ThomasWallace
Created February 10, 2015 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasWallace/72b2a1a3366297248515 to your computer and use it in GitHub Desktop.
Save ThomasWallace/72b2a1a3366297248515 to your computer and use it in GitHub Desktop.
Starter HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Out with the old...</title>
<link rel="stylesheet" href="path-to-css.css">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body>
<div id="container">
<header role="banner">
<h1>Starter Document</h1>
<p class="tagline">Site Tagline</p>
</header>
<main role="main">
<section>
<!-- Content goes here. Please mark up appropriately-->
</section>
<aside role="complementary">
<nav role="navigation">
<ul>
<li><a href="#">LINK</a></li>
<li><a href="#">LINK</a></li>
<li><a href="#">LINK</a></li>
</ul>
</nav>
</aside>
</main>
<footer role="contentinfo">
<p>&copy; 2015 <a href="#">Company Name</a></p>
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment