Last active
September 3, 2020 11:44
-
-
Save joe-oli/ce4e79ebd96a830dc51643ad7a3aa7d7 to your computer and use it in GitHub Desktop.
minimal html boilerplate / template
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 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