Skip to content

Instantly share code, notes, and snippets.

@lazybios
Created May 25, 2015 13:36
Show Gist options
  • Save lazybios/f205f0463abe0eed1240 to your computer and use it in GitHub Desktop.
Save lazybios/f205f0463abe0eed1240 to your computer and use it in GitHub Desktop.
html5 template
<!--
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