| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | <!DOCTYPE html><html lang="en">  <head>    <meta charset="UTF-8">    <title>Blasting off with Bootstrap</title>    <meta http-equiv="X-UA-COMPATIBLE" content="IE=Edge" />    <meta name="viewport" content="width=device-width, initial-scale=1" />    <link rel="stylesheet" href="css/bootstrap.css"/>  </head>  <body>    <div class="container">      <div class="row">        <h1>Blasting off with Boostrap</h1>      </div>      <div class="row">        <div class="col-md-8">          <h2>The fastest way to space</h2>images          <p>Make your way to space in the comfort of your own rocket, elevator or transporter.</p>          <button>Take the tour</button>          <button>Book Tickets now</button>        </div>        <div class="col-md-3 col-md-offset-1">          <a class=thumbnail href="images/blasting-off.png"><img src="images/blasting-off.png" /></a>        </div>      </div>      <div class="row">        <div class="col-md-4">          <h3>Boot Today!</h3>          <p>Even if you're traveling tomorrow, you can still get tickets today. We have            a number of conveniently located ports around the globe to service everyone.</p>        </div>        <div class="col-md-4">          <h3>Go anywhere</h3>          <p>If you need to get to space today, why not try out a transporter? Despite            the claims, there has been no deaths in the last 6 weeks!</p>          </div>        <div class="col-md-4">        <h3>RocketBus®</h3>        <p>For cheapest fares, catch the next RocketBus® to the stars. Cheaper on          your wallet, and easiest way to make friends.</p>        </div>      </div>    </div>    <script src="js/jquery-2.2.1.js"></script>    <script src="js/bootstrap.js"></script>  </body></html>
 |