Last active
August 29, 2015 14:13
-
-
Save kyletolle/ecbf135a69e6ce395580 to your computer and use it in GitHub Desktop.
Minimal HTML5 Page
This file contains 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 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