Last active
December 20, 2015 22:09
-
-
Save jasonicarter/6203057 to your computer and use it in GitHub Desktop.
HTML5 Skeleton 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> | |
<head> | |
<meta charset="utf-8"> | |
<title>My Hello World Title</title> | |
<!--[if lt IE 9]> | |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<link rel="shortcut icon" href="favicon.ico"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="wrapper"> <!-- used to set max width --> | |
<header> | |
<hgroup> | |
<h1>Hello World!</h1> | |
<h2>A HTML5 Skeleton Template</h2> <!-- subtitle --> | |
</hgroup> | |
<nav> | |
<h2>Navigation</h2> | |
<ul> | |
<li><a href="#">home</a></li> | |
<li><a href="#">about</a></li> | |
<li><a href="#">contact</a></li> | |
</ul> | |
</nav> | |
</header> | |
<div id="mainContent"> | |
<section> | |
<h2>About</h2> | |
<p> | |
Ubi fugiat ullamco ab legam expetendis si efflorescere ex aliquip de summis, | |
eram ubi possumus do laborum lorem anim sed elit ab non elit senserit | |
eruditionem si tamen possumus in iudicem, id ipsum tempor. | |
</p> | |
</section> | |
</div> <!-- end mainContent --> | |
<footer> | |
<p class="copyright">Copyright © 2013 Jason I. Carter</p> | |
</footer> | |
</div> <!--end wrapper--> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment