Skip to content

Instantly share code, notes, and snippets.

@louh
Last active January 18, 2016 17:14
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 louh/9b1113c88b4fe82fb61e to your computer and use it in GitHub Desktop.
Save louh/9b1113c88b4fe82fb61e to your computer and use it in GitHub Desktop.
minimum viable html
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='x-ua-compatible' content='ie=edge'>
<title>[YOUR PAGE TITLE] · Mapzen</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<!-- If you have other meta tags for social sharing, SEO, etc, add it here -->
<link rel='stylesheet' href='https://mapzen.com/common/styleguide/styles/styleguide.css'>
<!-- If you have other external stylesheets to reference, add it here -->
</head>
<body>
<nav><!-- Is the navbar required? --></nav>
<main><!-- We do not have a <main> wrapper yet, but should we? -->
<!-- Add your site or application content here -->
<div class='container'>
<div class='row'>
<div class='col-md-8 col-md-offset-2'>
<h1>Hello world!</h1>
<p>This is Mapzen Styleguide: HTML Boilerplate.</p>
</div>
</div>
</div>
</main>
<footer><!-- Is the footer required? --></footer>
<script src='https://mapzen.com/common/styleguide/main.js'></script>
<!-- If you have other external javascript files to reference, add it here -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment