Skip to content

Instantly share code, notes, and snippets.

@zvineyard
Created May 7, 2012 05:03
Show Gist options
  • Save zvineyard/2626020 to your computer and use it in GitHub Desktop.
Save zvineyard/2626020 to your computer and use it in GitHub Desktop.
HTML5: Page Start w/ jQuery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>HTML5 Start</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// Do something
});
</script>
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment