Skip to content

Instantly share code, notes, and snippets.

@beshur
Last active October 10, 2015 21:38
Show Gist options
  • Save beshur/3754968 to your computer and use it in GitHub Desktop.
Save beshur/3754968 to your computer and use it in GitHub Desktop.
HTML basic html template with jquery
<!DOCTYPE html>
<html>
<head>
<title>index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
<link type="text/css" rel="stylesheet" href="fonts/fonts.css" />
</head>
<body>
<div id="container">
<div id="header">
</div>
<div id="content">
</div>
<div id="footer">
</div>
</div>
<script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>
<script type="text/javascript" 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