Skip to content

Instantly share code, notes, and snippets.

@codeliger
Created November 11, 2014 21:04
Show Gist options
  • Save codeliger/67e5127f3f49a3eafee3 to your computer and use it in GitHub Desktop.
Save codeliger/67e5127f3f49a3eafee3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Website Title - Page Title</title>
<script>//javascript goes in here</script>
<style>/* css goes in here */</style>
</head>
<body>
<h1>Website Title</h1>
<nav>
<ul>
<li><a href="http://www.website.com">Hyperlink 1</a></li>
<li><a href="http://www.website.com">Hyperlink 2</a></li>
</ul>
</nav>
<h2>Section Title 1</h2>
<div>
<h3>Sub Section 1</h3>
<p>Content</p>
<h3>Sub Section 2</h3>
<div>
<h4>Sub Section 1</h4>
<p>Content</p>
<h4>Sub Section 2</h4>
<p>Content</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment