Skip to content

Instantly share code, notes, and snippets.

@kyletolle
Last active August 29, 2015 14:13
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 kyletolle/ecbf135a69e6ce395580 to your computer and use it in GitHub Desktop.
Save kyletolle/ecbf135a69e6ce395580 to your computer and use it in GitHub Desktop.
Minimal HTML5 Page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- For viewing the page on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barebones HTML5</title>
<link rel="stylesheet" href="style.css">
<script src="application.js"></script>
</head>
<body>
<h1>Minimal HTML5 Page</h1>
<p>Everything else will go around here.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment