Skip to content

Instantly share code, notes, and snippets.

@callerobertsson
Created May 14, 2013 06:51
Show Gist options
  • Save callerobertsson/5574143 to your computer and use it in GitHub Desktop.
Save callerobertsson/5574143 to your computer and use it in GitHub Desktop.
HTML: Page template #snippet
<!DOCTYPE html>
<!-- by calle@stenhall.com -->
<html>
<head>
<title>TITLE</title>
<style>
@import url("reset.css");
@import url("style.css");
</style>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="index.js"></script>
</head>
<body>
<div id="wrapper">
<div id="headerArea">
<h1>TITLE</h1>
<h3>Subtitle</h3>
</div>
<div id="contentArea">
<h1>CONTENT</h1>
Style in style.css and script in index.js.
</div>
<div id="footerArea">
<h1>Footer</h1>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment