Skip to content

Instantly share code, notes, and snippets.

@bencentra
Last active August 29, 2015 14:00
Show Gist options
  • Save bencentra/11048868 to your computer and use it in GitHub Desktop.
Save bencentra/11048868 to your computer and use it in GitHub Desktop.
Template webpage with Boostrap, jQuery, and AngularJS what for the quickly starting of webapps.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<title>Page Title</title>
<!-- Styles -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<style>
body {
padding-top: 10px;
padding-bottom: 10px;
}
</style>
</head>
<body>
<!-- Content -->
<div class="container">
</div>
<!-- Scripts -->
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<!--<script src="//code.angularjs.org/snapshot/angular.min.js"></script>-->
<script>
console.log("Hello, world!");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment