Skip to content

Instantly share code, notes, and snippets.

@commercial-hippie
Created February 2, 2014 09:43
Show Gist options
  • Save commercial-hippie/8765462 to your computer and use it in GitHub Desktop.
Save commercial-hippie/8765462 to your computer and use it in GitHub Desktop.
Just a basic html file that I can download to quickly test some JavaScript/HTML. Includes bootstrap CSS and JS, and AngularJS CDNs.
<!DOCTYPE html>
<html>
<head>
<title>Sandbox Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<p>this is my sandcastle</p>
</div>
<!--script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment