Last active
December 30, 2015 11:09
-
-
Save jsven69gist/7820663 to your computer and use it in GitHub Desktop.
HTML5: New page
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> | |
| <head> | |
| <title>Title here</title> | |
| <meta name="application-name" content="Application Name" /> | |
| <meta name="author" content="John Doe" /> | |
| <meta name="description" content="Description of page" /> | |
| <meta name="keywords" content="keywords here,with commans,inbetween"> | |
| <meta charset="utf-8" /> | |
| <link title="style" href="style/normalize.css" type="text/css" rel="stylesheet" /> | |
| <link title="style" href="style/main.css" type="text/css" rel="stylesheet" /> | |
| <link rel="shortcut icon" href="/favicon.png" type="image/png" /> | |
| <link rel="icon" href="favicon.png" type="image/png" /> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment