Created
August 1, 2016 00:44
-
-
Save davidmason/d5cdc6a201cc1e42ce99f3c40dfde4e5 to your computer and use it in GitHub Desktop.
Simple HTML5 template.
This file contains hidden or 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 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