Last active
August 29, 2015 14:20
-
-
Save patmanv/cb10fc9a8d261a6239c5 to your computer and use it in GitHub Desktop.
Bootstrap Html Boilerplate
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 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