Last active
January 18, 2016 17:14
-
-
Save louh/9b1113c88b4fe82fb61e to your computer and use it in GitHub Desktop.
minimum viable html
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'> | |
<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