| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 | <!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"/>    <link rel="stylesheet" href="css/main.css" />  </head>  <body>    <div class="container">      <div class="row">        <h1>Blasting off with Boostrap</h1>      </div>      <div class="row well well-lg">        <div class="col-xs-12 col-md-6">          <h2>The fastest way to space</h2>images          <p class="lead">Make your way to space in the comfort of your own rocket, elevator or transporter.</p>          <button type="button" class="btn btn-lg btn-default">Take the tour</button>          <button type="button" class="btn btn-lg btn-primary">Book Tickets now</button>        </div>        <div class="visible-md visible-lg col-sm-6">          <a class=thumbnail href="images/blasting-off.png"><img src="images/blasting-off.png" /></a>        </div>      </div>      <div class="row features text-center">        <div class="col-xs-10 col-xs-offset-1 col-sm-4 col-sm-offset-0">          <i class="glyphicon glyphicon-briefcase"></i>          <h3>Book 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-xs-6 col-sm-4">          <i class="glyphicon glyphicon-random"></i>          <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-xs-6 col-sm-4">          <i class="glyphicon glyphicon-send"></i>          <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>    <div class="quote">      <div class="container">        <blockquote>          <p>Any sufficiently advanced technology is indistinguishable from magic.</p>          <footer>Arthur C. Clarke in <cite title="Source Title">Profiles of the Future</cite></footer>        </blockquote>      </div>    </div>    <div class="container transport-systems">      <div class='row'>        <div class='col-md-10 col-md-offset-1'>          <h2>Our Transport Systems</h2>          <p>Learn more about our transport systems to find out which one is right for you. Pick out the mode of transport that works for your budget and risk level.</p>        </div>      </div>      <div class='row text-center'>        <div class='transporter col-md-3 col-md-offset-1 well'>          <h3>Transporter</h3>          <ul class="list-unstyled">            <li>8 second travel time</li>            <li>Chance of death only 1 in 7,593</li>            <li>Low price of only $15.99!</li>          </ul>          <p><button class="btn btn-info"><i class='glyphicon glyphicon-transfer'></i> Beam Me Up!</button></p>        </div>        <div class='space-elevator col-md-3 col-md-offset-1 well'>          <h3>Space Elevator</h3>          <ul class="list-unstyled">            <li>8 hour scenic ride</li>            <li>Only 1 horrific death per 12,456</li>            <li>Only $45.99 if you book today!</li>          </ul>          <p><button class="btn btn-info"><i class='glyphicon glyphicon-sort'></i> Board the Elevator!</button></p>        </div>        <div class='rocketbus col-md-3 col-md-offset-1 well'>          <h3>RocketBus</h3>          <ul class="list-unstyled">            <li>8 minute scenic ride</li>            <li>Plunging death rate of under 1/100k</li>            <li>$74.99 lets you blast off today!</li>          </ul>          <p><button class="btn btn-info"><i class='glyphicon glyphicon-plane'></i> Blast Off!</button></p>        </div>      </div>    </div>    <div class='footer'>      <div class='container'>        <div class='row'>          <div class='col-md-3 col-sm-4 col-xs-6'>            <h4>Who We Are</h4>            <p><i>Blasting Off With Bootstrap</i> is the fastest way to space. <a href='tickets.html'>Book your ticket today</a>!</p>            <p><a href='about.html'>More About Us <i class='glyphicon glyphicon-arrow-right'></i></a></p>          </div>          <div class='col-md-offset-1 col-sm-2 col-xs-6'>            <h4>Links</h4>            <ul class='list-unstyled'>              <li><a href='/'>Home</a></li>              <li><a href='tickets.html'>Tickets</a></li>              <li><a href='stations.html'>Stations</a></li>            </ul>          </div>          <div class='clearfix visible-xs'></div>          <div class='col-sm-2 col-xs-6'>            <h4>Stay in Touch</h4>            <ul class='list-unstyled'>              <li><a href='about.html'>About</a></li>              <li><a href='contact.html'>Contact Us</a></li>              <li><a href='/blog'>Blog</a></li>              <li><a href='http://twitter.com/codeschool'>Twitter</a></li>              <li><a href='http://facebook.com/codeschool'>Facebook</a></li>            </ul>          </div>          <div class='col-md-3 col-md-offset-1 col-sm-4 col-xs-6'>            <h4>Contact Us</h4>            <ul class='list-unstyled'>              <li><i class='glyphicon glyphicon-globe'></i> Orlando, FL</li>              <li><i class='glyphicon glyphicon-phone'></i> 1-555-blast-off</li>              <li><i class='glyphicon glyphicon-envelope'></i> <a href='mailto:blastingoff@codeschool.com'>blastingoff@codeschool.com</a></li>            </ul>            <p>Blasting Off With Bootstrap ©2214.</p>          </div>        </div>      </div>    </div>    <script src="js/jquery-2.2.1.js"></script>    <script src="js/bootstrap.js"></script>  </body></html>
 |