Skip to content

Instantly share code, notes, and snippets.

@davidmason
Created August 1, 2016 00:44
Show Gist options
  • Save davidmason/d5cdc6a201cc1e42ce99f3c40dfde4e5 to your computer and use it in GitHub Desktop.
Save davidmason/d5cdc6a201cc1e42ce99f3c40dfde4e5 to your computer and use it in GitHub Desktop.
Simple HTML5 template.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Commonly used HTML things</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js">
</script>
<script type="text/javascript" src="js+jquery_common.js"></script>
</head>
<body>
<h1>Commonly used HTML things</h1>
<ul>
<li>stylesheet link</li>
<li>jquery url</li>
<li>script link</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment