Advertisement
Guest User

Untitled

a guest
Mar 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--
  5. New Perspectives on HTML and CSS
  6. Tutorial 3
  7. Case Problem 2
  8.  
  9. Bike the Mountains Tour
  10. Author: Aliosha Iglesias
  11. Date: 03/17/18
  12.  
  13. Filename: bmtour.htm
  14. Supporting files: mwlogo.png,
  15. -->
  16.  
  17. <meta charset="UTF-8" />
  18. <title>Bike the Mountains Tour</title>
  19. <script src="modernizr-1.5.js"></script>
  20. <link rel="stylesheet" type="text/css" href="mw_layout.css">
  21.  
  22. </head>
  23.  
  24. <body>
  25.  
  26. <header>
  27. <h1 id="pageheader"><img src="mwlogo.png" alt="Mountain Wheels" /></h1>
  28. </header>
  29.  
  30. <nav>
  31. <ul>
  32. <li><a href="#">Home</a></li>
  33. <li><a href="#">Learn More</a></li>
  34. <li><a href="#">Testimonials</a></li>
  35. <li><a href="#">Route Maps</a></li>
  36. <li><a href="#">Register</a></li>
  37. <li><a href="#">Lodging</a></li>
  38. <li><a href="#">Meals</a></li>
  39. <li><a href="#">Training</a></li>
  40. <li><a href="#">Equipment</a></li>
  41. <li><a href="#">Forums</a></li>
  42. <li><a href="#">FAQs</a></li>
  43. <li><a href="#">Contact Us</a></li>
  44. </ul>
  45. </nav>
  46.  
  47. <header>
  48. <h1 id="articleheader">Bike the Mountains Tour</h1>
  49. </header>
  50.  
  51. <section id="leftsection">
  52. <p>
  53. The Bike the Mountains Tour rises from the town of Littleton,
  54. Colorado and explores the Colorado Front Range. Our tour
  55. crosses the Continental Divide twice, giving you the
  56. opportunity to bike the highest paved roads in the
  57. United States. This tour is a classic showcase of Colorado's
  58. Rocky Mountain scenery.
  59. </p>
  60.  
  61. <blockquote>
  62. <p>The Bike the Mountains Tour is <i>amazing</i>. I highly
  63. recommend it and would gladly return.
  64. </p>
  65. <cite>&mdash; Steve H.</cite>
  66. </blockquote>
  67.  
  68.  
  69. <p>Not designed for the weekend cyclist, this tour is offered
  70. only for those fit enough to ride high mountain passes. We
  71. provide sag wagons and support. Your lodging and meals are
  72. also part of the registration fee.
  73. We guarantee tough climbs, amazing sights, sweaty jerseys,
  74. and lots of fun.
  75. </p>
  76. <p>This is the seventh year we've offered the Bike the Mountains
  77. Tour. It is our most popular tour and riders are returning
  78. again and again. Our experienced tour leaders will be there
  79. to guide, help, encourage, draft, and lead you
  80. every stroke of the way. Come join us!
  81. </p>
  82. </section>
  83.  
  84.  
  85. <section id="rightsection">
  86. <h1>Itinerary</h1>
  87.  
  88. <h2>Day 1</h2>
  89. <p>We start from the foothills above Littleton, Colorado,
  90. promptly at 9am. The first day is a chance to get
  91. your legs in shape, test your gearing, and prepare for
  92. what's to come.
  93. </p>
  94.  
  95. <h2>Day 2</h2>
  96. <p>Day 2 starts with a climb up Bear Creek Canyon to Lookout
  97. Mountain, followed by a swift and winding descent into the
  98. town of Golden. Refresh yourself at the famous Coors Brewery.
  99. </p>
  100.  
  101. <h2>Day 3</h2>
  102. <p>Day 3 takes you along the Peak to Peak Highway. This
  103. 55-mile route showcases the mountains of the Front Range,
  104. providing amazing vistas from Golden Gate Canyon State Park
  105. to Rocky Mountain National Park.
  106. </p>
  107.  
  108. <h2>Day 4</h2>
  109. <p>Now for the supreme challenge: Day 4 brings some real
  110. high-altitude cycling through Rocky Mountain National Park
  111. and up Trail Ridge Road. It's an amazing ride, high above
  112. timberline, topping out at over 11,000 feet.
  113. </p>
  114.  
  115. <h2>Day 5</h2>
  116. <p>We start Day 5 on the west side of the Continental Divide.
  117. From Grand Lake, you'll bike to Winter Park and then over
  118. Berthoud Pass, and back to the eastern side of
  119. the Continental Divide.
  120. </p>
  121.  
  122. <h2>Day 6</h2>
  123. <p>On Day 6 we ride
  124. back to Littleton over Squaw Pass and Bear Creek and then
  125. enjoy a celebratory dinner as we share memories of a great
  126. tour.
  127. </p>
  128.  
  129. </section>
  130.  
  131. <footer>
  132. <address>
  133. Mountain Wheels &nbsp;&bull;&nbsp;
  134. Littleton, CO 80123 &nbsp;&bull;&nbsp;
  135. (303) 555 - 5499
  136. </address>
  137. </footer>
  138.  
  139. </body>
  140. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement