Last active
August 29, 2015 13:55
-
-
Save timster/8733313 to your computer and use it in GitHub Desktop.
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> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width"> | |
<title>HTML5 Template</title> | |
<meta name="description" content="Awesome decription of this website."> | |
<meta name="author" content="Tim Shaffer"> | |
<link rel="icon" type="image/png" href="img/favicon.png"> | |
<link rel="apple-touch-icon" href="img/apple-touch-icon-60x60.png"> <!-- iPhone / iPod --> | |
<link rel="apple-touch-icon" href="img/apple-touch-icon-76x76.png" sizes="76x76"> <!-- iPad --> | |
<link rel="apple-touch-icon" href="img/apple-touch-icon-120x120.png" sizes="120x120"> <!-- iPhone / iPod Retina --> | |
<link rel="apple-touch-icon" href="img/apple-touch-icon-152x152.png" sizes="152x152"> <!-- iPad Retina --> | |
<!--[if lt IE 9]> | |
<script src="js/html5shiv.js"></script> | |
<![endif]--> | |
<link rel="stylesheet" href="css/reset.css"> | |
<link rel="stylesheet" href="css/styles.css"> | |
</head> | |
<body> | |
<p>Welcome to a simple HTML5 template.</p> | |
<script src="js/jquery.js"></script> | |
<script src="js/javascript.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment