Created
November 16, 2014 22:47
-
-
Save bmiles/c7faecb988a675869863 to your computer and use it in GitHub Desktop.
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> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> div {background-color: #e0e0e0}</style> | |
<title>Bootstrap 101 Template</title> | |
<!-- Bootstrap --> | |
<link href="app/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- HTML5 shim and Respond.js for 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/html5shiv/3.7.2/html5shiv.min.js"></script> | |
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<h1>Hello, world!</h1> | |
<!-- <div class="row"> | |
<div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div> | |
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> | |
</div> --> | |
<div class="row"> | |
<div class="col-xs-12 col-sm-6 col-md-3">1</div> | |
<div class="col-xs-12 col-sm-6 col-md-3">2</div> | |
<div class="col-xs-12 col-sm-6 col-md-3">3</div> | |
<!-- Optional: clear the XS cols if their content doesn't match in height --> | |
<!-- <div class="clearfix visible-xs-block"></div> --> | |
<div class="col-xs-12 col-sm-6 col-md-3">4</div> | |
</div> | |
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<!-- Include all compiled plugins (below), or include individual files as needed --> | |
<script src="app/bower_components/bootstrap/dist/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