Skip to content

Instantly share code, notes, and snippets.

@techslides
Created October 2, 2014 16:28
Show Gist options
  • Save techslides/b22d6f7af29f30c20709 to your computer and use it in GitHub Desktop.
Save techslides/b22d6f7af29f30c20709 to your computer and use it in GitHub Desktop.
Basic HTML5 Starter Template
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Page Description for Search Engines"/>
<title>HTML5 Basic Structure</title>
<link rel="stylesheet" href="http://necolas.github.io/normalize.css/3.0.1/normalize.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato">
<style>
body{
font-family: "Lato", sans-serif;
}
</style>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header></header>
<section>
Main Section
</section>
<footer></footer>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script>
$(function(){
//JavaScript/jQuery code here
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment