Skip to content

Instantly share code, notes, and snippets.

@sebdeckers
Last active December 16, 2015 04:39
Show Gist options
  • Save sebdeckers/5379047 to your computer and use it in GitHub Desktop.
Save sebdeckers/5379047 to your computer and use it in GitHub Desktop.
Basic building blocks of an HTML document
<!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 &amp; 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