index.html 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Blasting off with Bootstrap</title>
  6. <meta http-equiv="X-UA-COMPATIBLE" content="IE=Edge" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1" />
  8. <link rel="stylesheet" href="css/bootstrap.css"/>
  9. <link rel="stylesheet" href="css/main.css" />
  10. </head>
  11. <body>
  12. <div class="navbar navbar-default navbar-static-top">
  13. <div class="container">
  14. <!-- navbar-header takes up 100% width on XS screens only -->
  15. <div class="navbar-header">
  16. <a href="/" class="navbar-brand">Blasting off with Boostrap</a>
  17. <button type="button" class="navbar-toggle"
  18. data-toggle="collapse" data-target=".navbar-collapse">
  19. <!-- sr-only means Screen Readers Only -->
  20. <span class="sr-only">Toggle navigation</span>
  21. <!-- The number of .icon-bar spans defines the number of rows in the button -->
  22. <span class="icon-bar"></span>
  23. <span class="icon-bar"></span>
  24. <span class="icon-bar"></span>
  25. </button>
  26. </div>
  27. <ul class="nav navbar-nav navbar-right collapse navbar-collapse">
  28. <li class="nav navbar-link"><a href="#tickets.html">Tickets</a></li>
  29. <li class="nav navbar-link"><a href="#stations.html">Stations</a></li>
  30. <li class="nav navbar-link">
  31. <a href="about.html" data-target="#" data-toggle="dropdown">About <span class="caret"></span></a>
  32. <ul class="dropdown-menu">
  33. <li><a href="story.html">Our Story</a></li>
  34. <li><a href="contact.html">Contact Us</a></li>
  35. <li class="divider"></li>
  36. <li><a href="blog">Blog</a></li>
  37. <li class="divider"></li>
  38. <li><a href="http://twitter.com/osinet">Twitter</a></li>
  39. <li><a href="https://www.facebook.com/OSInet-217871594891150">Facebook</a></li>
  40. </ul>
  41. </li>
  42. </ul>
  43. </div>
  44. </div>
  45. <div class="container">
  46. <div class="row well well-lg">
  47. <div class="col-xs-12 col-md-6">
  48. <h2>The fastest way to space</h2>images
  49. <p class="lead">Make your way to space in the comfort of your own rocket, elevator or transporter.</p>
  50. <div class='btn-group'>
  51. <button type='button' class='btn btn-default btn-lg dropdown-toggle' data-toggle="dropdown">
  52. Take the Tour <span class="caret"></span>
  53. </button>
  54. <ul class="dropdown-menu">
  55. <li><a href='#'>Transporter</a></li>
  56. <li><a href='#'>Orbital Elevator</a></li>
  57. <li><a href='#'>RocketBus</a></li>
  58. <li class="divider"></li>
  59. <li><a href='#'>Learn More</a></li>
  60. </ul>
  61. </div>
  62. <button type="button" class="btn btn-lg btn-primary">Book Tickets now</button>
  63. </div>
  64. <div class="visible-md visible-lg col-sm-6">
  65. <a class=thumbnail href="images/blasting-off.png"><img src="images/blasting-off.png" /></a>
  66. </div>
  67. </div>
  68. <div class="row features text-center">
  69. <div class="col-xs-10 col-xs-offset-1 col-sm-4 col-sm-offset-0">
  70. <i class="glyphicon glyphicon-briefcase"></i>
  71. <h3>Book Today!</h3>
  72. <p>Even if you're traveling tomorrow, you can still get tickets today. We have
  73. a number of conveniently located ports around the globe to service everyone.</p>
  74. </div>
  75. <div class="col-xs-6 col-sm-4">
  76. <i class="glyphicon glyphicon-random"></i>
  77. <h3>Go anywhere</h3>
  78. <p>If you need to get to space today, why not try out a transporter? Despite
  79. the claims, there has been no deaths in the last 6 weeks!</p>
  80. </div>
  81. <div class="col-xs-6 col-sm-4">
  82. <i class="glyphicon glyphicon-send"></i>
  83. <h3>RocketBus&reg;</h3>
  84. <p>For cheapest fares, catch the next RocketBus&reg; to the stars. Cheaper on
  85. your wallet, and easiest way to make friends.</p>
  86. </div>
  87. </div>
  88. </div>
  89. <div class='footer'>
  90. <div class='container'>
  91. <div class='row'>
  92. <div class='col-md-3 col-sm-4 col-xs-6'>
  93. <h4>Who We Are</h4>
  94. <p><i>Blasting Off With Bootstrap</i> is the fastest way to space. <a href='tickets.html'>Book your ticket today</a>!</p>
  95. <p><a href='about.html'>More About Us <i class='glyphicon glyphicon-arrow-right'></i></a></p>
  96. </div>
  97. <div class='col-md-offset-1 col-sm-2 col-xs-6'>
  98. <h4>Links</h4>
  99. <ul class='list-unstyled'>
  100. <li><a href='/'>Home</a></li>
  101. <li><a href='tickets.html'>Tickets</a></li>
  102. <li><a href='stations.html'>Stations</a></li>
  103. </ul>
  104. </div>
  105. <div class='clearfix visible-xs'></div>
  106. <div class='col-sm-2 col-xs-6'>
  107. <h4>Stay in Touch</h4>
  108. <ul class='list-unstyled'>
  109. <li><a href='about.html'>About</a></li>
  110. <li><a href='contact.html'>Contact Us</a></li>
  111. <li><a href='/blog'>Blog</a></li>
  112. <li><a href='http://twitter.com/codeschool'>Twitter</a></li>
  113. <li><a href='http://facebook.com/codeschool'>Facebook</a></li>
  114. </ul>
  115. </div>
  116. <div class='col-md-3 col-md-offset-1 col-sm-4 col-xs-6'>
  117. <h4>Contact Us</h4>
  118. <ul class='list-unstyled'>
  119. <li><i class='glyphicon glyphicon-globe'></i> Orlando, FL</li>
  120. <li><i class='glyphicon glyphicon-phone'></i> 1-555-blast-off</li>
  121. <li><i class='glyphicon glyphicon-envelope'></i> <a href='mailto:blastingoff@codeschool.com'>blastingoff@codeschool.com</a></li>
  122. </ul>
  123. <p>Blasting Off With Bootstrap &copy;2214.</p>
  124. </div>
  125. </div>
  126. </div>
  127. </div>
  128. <script src="js/jquery-2.2.1.js"></script>
  129. <script src="js/bootstrap.js"></script>
  130. </body>
  131. </html>