Skip to content

Instantly share code, notes, and snippets.

@JoelLisenby
Last active July 7, 2017 18:33
Show Gist options
  • Save JoelLisenby/6b9f5a3208351a6900ecfa83cf7a6a00 to your computer and use it in GitHub Desktop.
Save JoelLisenby/6b9f5a3208351a6900ecfa83cf7a6a00 to your computer and use it in GitHub Desktop.
The basic responsive html template.
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Tab Title</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script>
// Some javascript here
</script>
</head>
<body>
<section>
<h1>Section Title</h1>
<p>Section Content</p>
</section>
<script>
// Maybe some more javascript here
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment