Skip to content

Instantly share code, notes, and snippets.

@patmanv
Last active August 29, 2015 14:20
Show Gist options
  • Save patmanv/cb10fc9a8d261a6239c5 to your computer and use it in GitHub Desktop.
Save patmanv/cb10fc9a8d261a6239c5 to your computer and use it in GitHub Desktop.
Bootstrap Html Boilerplate
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<!-- TODO ref cdn here and at the bottom -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="jumbotron">
<h2>Hello World</h2>
<div class="btn btn-success">Success</div>
<div class="btn btn-danger">Danger!</div>
</div>
Domo Aragato Mr Roboto
</div>
<script src="Scripts/jquery-2.1.3.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment