Skip to content

Instantly share code, notes, and snippets.

@zross
Created April 4, 2013 13:23
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 zross/5310302 to your computer and use it in GitHub Desktop.
Save zross/5310302 to your computer and use it in GitHub Desktop.
HTML: boilerplate w jquery
<!DOCTYPE html>
<html>
<head>
<title>HTML5</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=650, user-scalable=yes">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/style.css">
<!-- move this into your css file -->
</head>
<body>
<div id="container">
<header>
<h1>HTML5 Boilerplate</h1>
</header>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment