Skip to content

Instantly share code, notes, and snippets.

@joe-oli
Last active September 3, 2020 11:44
Show Gist options
  • Save joe-oli/ce4e79ebd96a830dc51643ad7a3aa7d7 to your computer and use it in GitHub Desktop.
Save joe-oli/ce4e79ebd96a830dc51643ad7a3aa7d7 to your computer and use it in GitHub Desktop.
minimal html boilerplate / template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Title</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/icon.png" />
<!-- Add modernizr
<script src="modernizr.js"></script>
-->
</head>
<body>
<div class="wrapper">
<header></header>
<main></main>
<footer></footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment