Created
May 25, 2015 13:36
-
-
Save lazybios/f205f0463abe0eed1240 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
<!-- | |
HTML5. Use tags like <article>, <section>, etc. | |
See: http://www.sitepoint.com/web-foundations/doctypes/ | |
--> | |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- | |
Ask IE to behave like a modern browser | |
See: https://www.modern.ie/en-us/performance/how-to-use-x-ua-compatible | |
--> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title>My Site</title> | |
<!-- | |
Disables zooming on mobile devices. | |
--> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<!-- | |
Stylesheet that minimizes browser differences. | |
See: http://necolas.github.io/normalize.css/ | |
--> | |
<link rel="stylesheet" href="css/normalize.css"> | |
<!-- | |
Our own stylesheet. | |
--> | |
<link rel="stylesheet" href="css/main.css"> | |
</head> | |
<body> | |
put content here | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment