Skip to content

Instantly share code, notes, and snippets.

@rahuldass
Last active August 29, 2015 13:56
Show Gist options
  • Save rahuldass/9036510 to your computer and use it in GitHub Desktop.
Save rahuldass/9036510 to your computer and use it in GitHub Desktop.
HTML5 Starter Template #html5

###HTML5 Starter Template

Basic HTML5 starter template with HTML5 Shiv for older IE browsers.

HTML

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>HTML5 Starter Template</title>
  <meta name="description" content="#">
  <meta name="author" content="#">
  <link rel="stylesheet" href="css/styles.css">
  <!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->
</head>
    <body>
    
      <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
      <script src="js/scripts.js"></script>
    </body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment