Last active
August 29, 2015 14:19
-
-
Save yuval-a/195bd9e88634d82bdffb to your computer and use it in GitHub Desktop.
HTML Head 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 http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta name="description" content="[description here]" /> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>[title here]</title> | |
<link rel="stylesheet" href="css/normalize.css" /> | |
<link rel="stylesheet" href="css/style.css" /> | |
<script type="text/javascript" src="js/jquery.min.js"></script> | |
<!--[if lte IE 9]> | |
<script src="../js/ie/classList.min.js"></script> | |
<script src="../js/ie/html5shiv.min.js"></script> | |
<![endif]--> | |
</head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment