Last active
December 16, 2015 04:39
-
-
Save sebdeckers/5379047 to your computer and use it in GitHub Desktop.
Basic building blocks of an HTML document
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> | |
| <meta charset="utf-8" /> | |
| <title>Homepage | My Personal Site</title> | |
| <link rel="stylesheet" href="gorgeous.css" /> | |
| <script type="text/javascript" src="amazing.js"></script> | |
| </head> | |
| <body> | |
| <article> | |
| <h1>Nunc Vehicula Dapibus</h1> | |
| <p>Proin ornare ligula eu tellus tempus & elementum.</p> | |
| <p>Aenean bibendum iaculis mi, | |
| nec blandit lacus interdum vitae.</p> | |
| <p>Vestibulum non nibh risus, a scelerisque purus.</p> | |
| </article> | |
| <!-- Provide some links for people to learn more about me --> | |
| <footer> | |
| <a href="mailto:[email protected]">Email me</a> | |
| <a href="http://www.facebook.com/someone.example">Stalk me</a> | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment