Created
October 2, 2014 10:00
-
-
Save cheng470/085621a1f5a7a69300c5 to your computer and use it in GitHub Desktop.
HTML5 Template
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> | |
<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