Last active
December 16, 2015 22:09
-
-
Save WillsonSmith/5505500 to your computer and use it in GitHub Desktop.
A snippet for the basics of an HTML page.
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> | |
<head> | |
<title></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<div id='container' class='container'> | |
<p>My view has been loaded</p> | |
</div> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script>window.jQuery || document.write('<script src="js/jquery.js"><\/script>')</script> | |
<script src='js/script.js'></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment