Last active
October 10, 2015 21:38
-
-
Save beshur/3754968 to your computer and use it in GitHub Desktop.
HTML basic html template with jquery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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