123456789101112131415161718192021222324252627282930313233343536 |
- <!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">
- <h1>Blasting off with Boostrap</h1>
- <h2>The fastest way to space</h2>
- <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>
- <h2>Boot Today!</h2>
- <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>
- <h2>Go anywhere</h2>
- <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>
- <h2>RocketBus®</h2>
- <p>For cheapest fares, catch the next RocketBus® to the stars. Cheaper on
- your wallet, and easiest way to make friends.</p>
- </div>
- <script src="js/jquery-2.2.1.js"></script>
- <script src="js/bootstrap.js"></script>
- </body>
- </html>
|