Skip to content

Instantly share code, notes, and snippets.

@lopezpdvn
Last active May 25, 2016 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lopezpdvn/4e29ace74f2cdee9d0a3 to your computer and use it in GitHub Desktop.
Save lopezpdvn/4e29ace74f2cdee9d0a3 to your computer and use it in GitHub Desktop.
HTML5 templates
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/main_stylesheet.css" />
<link rel="shortcut icon" href="/favicon.ico" />
<title>
Title || URI
</title>
</head>
<body>
<div id="content">
<h1>Heading 1</h1>
<p>Text body.
<br/>
<ul>
<li><a href="/resource-1">Resource 1</a></li>
<li><a href="/resource-2" target="_blank" >Resource 2</a></li>
<li><a href="/resource-3">Resource 3</a></li>
</ul>
</p>
</div>
<footer>
<p>Footer text.</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment