Skip to content

Instantly share code, notes, and snippets.

@phillbaker
Last active October 12, 2015 02:57
Show Gist options
  • Save phillbaker/3960825 to your computer and use it in GitHub Desktop.
Save phillbaker/3960825 to your computer and use it in GitHub Desktop.
HTML5 starter with boostrap cdn + jquery cdn
<!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>
@phillbaker
Copy link
Author

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.

@gmilby
Copy link

gmilby commented Aug 11, 2013

thanks - u useful gist <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment