Skip to content

Instantly share code, notes, and snippets.

@stevefraser
Created July 31, 2013 00:32
Show Gist options
  • Save stevefraser/6118313 to your computer and use it in GitHub Desktop.
Save stevefraser/6118313 to your computer and use it in GitHub Desktop.
HTML5 Blank Page Structure
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<!-- all content goes in here -->
<!-- End Document
================================================== -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment