Skip to content

Instantly share code, notes, and snippets.

@cheng470
Created October 2, 2014 10:00
Show Gist options
  • Save cheng470/085621a1f5a7a69300c5 to your computer and use it in GitHub Desktop.
Save cheng470/085621a1f5a7a69300c5 to your computer and use it in GitHub Desktop.
HTML5 Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML5 Template</title>
<style>
#mastHead {}
#mainContent {}
#pageFooter {}
</style>
<script></script>
</head>
<body>
<header id="masthead">
<h1>Page Title Here</h1>
</header>
<div id="mainContent">
<p>Your page contents here</p>
</div>
<footer id="pageFooter">
<p>Your footer legal disclaimers here</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment