Last active
October 12, 2015 02:57
-
-
Save phillbaker/3960825 to your computer and use it in GitHub Desktop.
HTML5 starter with boostrap cdn + jquery cdn
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"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet"> | |
<style> | |
/*Styles*/ | |
</style> | |
</head> | |
<body class="container"> | |
<h1>Hello, world!</h1> | |
<script src="http://code.jquery.com/jquery-1.8.3.js"></script> | |
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
//no-op | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is for quick demos, interviews and testing things - hence it's typically run off of file:// so the non-protocol access of CDN'ed files doesn't work.