Skip to content

Instantly share code, notes, and snippets.

@zwigby
Created April 23, 2012 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zwigby/2471691 to your computer and use it in GitHub Desktop.
Save zwigby/2471691 to your computer and use it in GitHub Desktop.
html: starting template
<!DOCTYPE html>
<html lang="en">
<head>
<!-- set the character set -->
<meta charset="utf-8">
<!-- tell IE to use latest version and chrome frame if available -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Title</title>
<!-- include basic style sheet -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script src="js/main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment