Skip to content

Instantly share code, notes, and snippets.

@danielantelo
Last active November 9, 2015 22:20
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 danielantelo/5f2c56dc94807107cc18 to your computer and use it in GitHub Desktop.
Save danielantelo/5f2c56dc94807107cc18 to your computer and use it in GitHub Desktop.
HTML5 Base Template
<!DOCTYPE html>
<html>
<head>
<!-- Meta conf -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Meta info -->
<title>HTML5 base</title>
<meta name="description" content="">
<meta name="keywords" content="">
<!-- Stylesheets -->
<link rel="stylesheet" href="/css/web.min.css">
</head>
<body>
<header>
<!-- Header content: logo, nav, etc -->
<h1>HTML5 base</h1>
<nav>
</nav>
</header>
<main>
<!-- Page content -->
</main>
<aside>
<!-- Secondary content -->
</aside>
<footer>
<!-- Footer content: copyright, sitemap, etc. -->
</footer>
<!-- Javascripts -->
<script src="/js/web.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment