Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Created January 22, 2012 15:13
Show Gist options
  • Save wrburgess/1657333 to your computer and use it in GitHub Desktop.
Save wrburgess/1657333 to your computer and use it in GitHub Desktop.
HTML5 Page Template
Check for updates:
jquery - http://code.google.com/apis/libraries/devguide.html
modernizr - http://www.asp.net/ajaxlibrary/cdn.ashx#Modernizr_Releases_on_the_CDN_7
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Template | Home</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.0.6-development-only.js"></script>
</head>
<body id="front" class="page">
<header>
</header>
<div id="content">
<p>This is the home page</p>
</div><!-- /#content -->
<footer>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment