Created
February 25, 2018 14:01
-
-
Save dcb9/112d0dcdb35c5bbba3484640b3b08c9f to your computer and use it in GitHub Desktop.
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