Skip to content

Instantly share code, notes, and snippets.

@awendland
Last active August 29, 2015 14:11
Show Gist options
  • Save awendland/ffb3755862e96355b069 to your computer and use it in GitHub Desktop.
Save awendland/ffb3755862e96355b069 to your computer and use it in GitHub Desktop.
Simple HTML starter file for quick prototyping
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>An Amazing Title</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css">
<link rel="stylesheet" href="style.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="home">
<!-- Put HTML here -->
<script src="main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment