Created
April 8, 2011 20:24
-
-
Save lukeholder/910642 to your computer and use it in GitHub Desktop.
a simple html5 template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<!--Page Title--> | |
<title>HTML5 Starter</title> | |
<!--Meta Tags--> | |
<meta charset="utf-8"> | |
<meta name="keywords" content=""> | |
<meta name="description" content=""> | |
<!-- Set Viewport--> | |
<meta name="viewport" content="user-scalable=no,initial-scale=1.0, maximum-scale=1.0 width=device-width" /> | |
<!-- Allows WebApp--> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<!--Load CSS--> | |
<!--Main CSS--> | |
<link type="text/css" rel="stylesheet" href="screen.css" media="screen"> | |
<!--Target iPad--> | |
<link type="text/css" rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)" href="ipad.css" /> | |
<!--Target iPhone 3GS> --> | |
<link type="text/css" rel="stylesheet" media="only screen and (max-device-width: 480px)" href="iphone.css" /> | |
<!--Target iPhone 4--> | |
<link type="text/css" rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 480px)" href="retnia.css" /> | |
<!--FAVICON--> | |
<link rel="shortcut icon" href="images/fav.ico"> | |
<!--Jquery--> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> | |
<!--Jquery Plugins--> | |
<!--Custom JavaScript--> | |
<!--HTML5 Shiv--> | |
<!--[if lt IE 9]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
</head> | |
<!--Start Body--> | |
<body> | |
<!--Start Header--> | |
<header> | |
</header> | |
<!--Start Nav--> | |
<nav> | |
</nav> | |
<!--Start Section--> | |
<section> | |
<!--Start Sidebar--> | |
<aside> | |
</aside> | |
</section> | |
<!--Start Footer--> | |
<footer> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment