Skip to content

Instantly share code, notes, and snippets.

@paulograbin
Last active August 29, 2015 14:19
Show Gist options
  • Save paulograbin/781f5d2c84b9c742ce3b to your computer and use it in GitHub Desktop.
Save paulograbin/781f5d2c84b9c742ce3b to your computer and use it in GitHub Desktop.
Small bootstrap sample page
<!DOCTYPE html>
<html>
<head>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
<link rel="stylesheet" href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css">
<link rel="stylesheet" href="main.css">
</head>
<div class="jumbotron">
<div class="container">
<h1>Find a place to stay.</h1>
<p>Rent from people in over 34,000 cities and 192 countries.</p>
<a href="#">Learn More</a>
</div>
</div>
<div class="neighborhood-guides">
<div class="container">
<h2>Neighborhood Guides</h2>
<p>Not sure where to stay? We've created neighborhood guides for cities all around the world</p>
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<img src="http://goo.gl/0sX3jq">
</div>
<div class="thumbnail">
<img src="http://goo.gl/an2HXY">
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img src="http://goo.gl/Av1pac">
</div>
<div class="thumbnail">
<img src="http://goo.gl/vw43v1">
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img src="http://goo.gl/0Kd7UO">
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment