Last active
October 17, 2018 19:52
-
-
Save exarcheia-web/6152234 to your computer and use it in GitHub Desktop.
LESSON 2
Standard html5 boilerplate - 2013
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"> | |
| <title>Example page</title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link href="favicon.ico" rel="shortcut icon"> | |
| <link href="apple-touch-icon.png" rel="apple-touch-icon"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <!--[if lt IE 9]> | |
| <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| </head> | |
| <body> | |
| <h1>Hello world</h1> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment