Created
March 5, 2015 23:38
-
-
Save ryanlelek/4831db632bfac0a0a128 to your computer and use it in GitHub Desktop.
Bootstrap
This file contains 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"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title>Starter Template for Bootstrap</title> | |
<!-- Bootstrap core CSS --> | |
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-4" style="background: #333; padding: 20px;"> | |
<form> | |
<div class="form-group"> | |
<label for="exampleInputEmail1">Email address</label> | |
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputPassword1">Password</label> | |
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputFile">File input</label> | |
<input type="file" id="exampleInputFile"> | |
<p class="help-block">Example block-level help text here.</p> | |
</div> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox"> Check me out | |
</label> | |
</div> | |
<button type="submit" class="btn btn-default">Submit</button> | |
</form> | |
</div> | |
<div class="col-md-8" style="background: #000; padding: 20px;"> | |
On the Right | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4"> | |
<div style="margin-top: 10px; background: blue;"> | |
Track Shipment | |
</div> | |
</div> | |
<div class="col-md-4 col-md-offset-4" style="background: red;"> | |
Get Rate Quote | |
</div> | |
</div> | |
</div> | |
<!-- Bootstrap core JavaScript | |
================================================== --> | |
<!-- Placed at the end of the document so the pages load faster --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> | |
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/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