Created
November 11, 2014 21:04
-
-
Save codeliger/67e5127f3f49a3eafee3 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 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