Skip to content

Instantly share code, notes, and snippets.

@stefgosselin
Created April 15, 2017 20:30
Show Gist options
  • Save stefgosselin/faf35e2f73a13f264531441e191cfebe to your computer and use it in GitHub Desktop.
Save stefgosselin/faf35e2f73a13f264531441e191cfebe to your computer and use it in GitHub Desktop.
Base html5 template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sample site</title>
<meta name="description" content="Sample site">
<meta name="author" content="SampleSite">
<link rel="stylesheet" href="css/styles.css?v=1.0">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
Hello world.
<script src="js/scripts.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment