Skip to content

Instantly share code, notes, and snippets.

@firecopstation6
Created April 14, 2015 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save firecopstation6/50ff663d73bc113e58c5 to your computer and use it in GitHub Desktop.
Save firecopstation6/50ff663d73bc113e58c5 to your computer and use it in GitHub Desktop.
Template for a basic HTML5 web page (snipped from Snipplr)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HTML5 basic skeleton</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style type="text/css">
header, section, footer, aside, nav, article, figure, audio, video, canvas { display:block; }
</style>
</head>
<body>
<div id="wrapper">
<header>
Header
</header>
<nav>
Nav
</nav>
<section id="content">
<article>
Article
</article>
</section>
<aside>
Sidebar
</aside>
<footer>
Footer
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment