Last active
December 27, 2015 14:09
-
-
Save fakiolinho/7339027 to your computer and use it in GitHub Desktop.
Bootstrap 3 Template
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 lang="en"> | |
<head> | |
<title>Bootstrap 3.3.2 Template</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<h1 class="text-center">Hello, world!</h1> | |
</div> | |
</div> | |
</div> | |
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script> | |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> | |
<script> | |
$(function(){ | |
Page.init(); | |
}); | |
var Page = { | |
init: function(){ | |
} | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment