Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2010
3,315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5.08 KB | None | 0 0
  1. <html>
  2. <head>
  3. <!--
  4.   New Perspectives on HTML and XHTML
  5.   Tutorial 4
  6.   Case Problem 3
  7.  
  8.   Longs Peak Online Map
  9.   Author: David Fien
  10.   Date:   6/25/2010
  11.  
  12.   Filename:         longs.htm
  13.   Supporting files: image.jpg - image9.jpg, lpmap.jpg
  14. -->
  15.    <title>Longs Peak Online Map</title>
  16.  
  17.    <style type="text/css">
  18.       body           {font-family: sans-serif; margin: 20px; margin-bottom: 150px}
  19.       h2             {margin-top: 0px}
  20.       img            {border-width: 0px; display: block}
  21.       #summary       {width: 600px; margin-bottom: 20px}
  22.       a              {text-decoration: none}
  23.       #online_map    {width: 600px; height:294; border: 1px solid rgb(0, 0, 0); background-image: url(lpmap.jpg); position: relative; top: 0; left: 0}
  24.       .notes   a     {width: 20px; height: 20px; overflow: hidden; background_color: blue; font_color: white; z_index: 1}
  25.       .notes   p     {font-size:  8pt; margin:5px}
  26.       .notes   span  {color: yellow}
  27.    </style>
  28.  
  29. </head>
  30.  
  31. <body>
  32.    <div id="summary">
  33.  
  34.       <h2>Longs Peak Online Trail Map</h2>
  35.  
  36.       <p>
  37.          At 14,255 feet, Longs Peak towers above all other summits in Rocky Mountain
  38.          National Park. The summer is the only season in which the peak can be climbed
  39.          by a non-technical route. Early mornings break calm, clouds build in the
  40.          afternoon sky, often exploding in storms of brief, heavy rain, thunder and
  41.          dangerous lightning. Begin your hike early, way before dawn, to be back below
  42.          timberline before the weather turns for the worse.
  43.       </p>
  44.       <p>
  45.          The Keyhole Route, Longs Peak's only non-technical hiking pathway, is a 16
  46.          mile round trip with an elevation gain of 4,850 feet. Though non-technical,
  47.          the Keyhole Route is still challenging and is not recommended for those who
  48.          are afraid of heights or exposed ledges. Hikers should be properly outfitted
  49.          with clothing, food and water. Use caution when ascending or descending steep
  50.          areas. Don't be afraid to back down when bad weather threatens.
  51.       </p>
  52.       <p id="instruction">
  53.          Move your mouse pointer over the numbered landmarks in the map to preview the hike.
  54.       </p>
  55.    </div>
  56.  
  57.  
  58.    <div id="online_map">
  59.  
  60.       <div class="notes" id="point0">
  61.     <a href="longs.html" type="text/css">
  62.             <img src="image0.jpg" alt="" />
  63.             <p>
  64.                <span>3:30 a.m.</span> Start from the Longs Peak Ranger Station,
  65.                 nine miles south of Estes Park. Be sure to pack food, extra water,
  66.                 sunblock, and warm clothes, gloves, and caps.
  67.             </p>
  68.     </a>
  69.       </div>
  70.  
  71.       <div class="notes" id="point1">
  72.     <a href="longs.html">
  73.         <img src="image1.jpg" alt="" />
  74.             <p>
  75.                <span>5:30 a.m.</span> Stop at Mills Moraine for a view of the
  76.                sunrise.
  77.            </p>
  78.     </a>
  79.       </div>
  80.  
  81.       <div class="notes" id="point2">
  82.     <a href="longs.html">
  83.             <img src="image2.jpg" alt="" />
  84.             <p>
  85.                <span>7:30 a.m.</span> Time for break at Granite Pass.
  86.             </p>
  87.     <a>
  88.       </div>
  89.  
  90.       <div class="notes" id="point3">
  91.     <a href="longs.html">
  92.             <img src="image3.jpg" alt="" />
  93.             <p>
  94.                <span>8:30 a.m.</span> Climb through the Boulder Field on the
  95.                way to the Keyhole.
  96.             </p>
  97.     </a>
  98.       </div>
  99.  
  100.       <div class="notes" id="point4">
  101.     <a href="longs.html">
  102.             <img src="image4.jpg" alt="" />
  103.             <p>
  104.                <span>9:00 a.m.</span> Stop at the
  105.                Agnes Vaille shelter for a well-deserved breakfast.
  106.             </p>
  107.     </a>
  108.       </div>
  109.  
  110.       <div class="notes" id="point5">
  111.     <a href="longs.html">
  112.             <img src="image5.jpg" alt="" />
  113.             <p>
  114.                <span>9:30 a.m.</span> It's time to go through
  115.                the Keyhole. Be prepared for heavy winds.
  116.             </p>
  117.     </a>
  118.       </div>
  119.  
  120.       <div class="notes" id="point6">
  121.     <a href="longs.html">
  122.             <img src="image6.jpg" alt="" />
  123.             <p>
  124.                <span>10:00 a.m.</span> Follow the painted targets along the Ledges.
  125.             </p>
  126.     </a>
  127.       </div>
  128.  
  129.       <div class="notes" id="point7">
  130.     <a href="longs.html">
  131.             <img src="image7.jpg" alt="" />
  132.             <p>
  133.                <span>11:00 a.m.</span> Take special care when crossing the Narrows.
  134.             </p>
  135.     </a>
  136.       </div>
  137.  
  138.       <div class="notes" id="point8">
  139.     <a href="longs.html">
  140.             <img src="image8.jpg" alt="" />
  141.             <p>
  142.                <span>11:15 a.m.</span> You're almost there! Climb the Homestretch
  143.                to reach the summit.
  144.             </p>
  145.     </a>
  146.       </div>
  147.  
  148.       <div class="notes" id="point9">
  149.     <a href="longs.html">
  150.             <img src="image9.jpg" alt="" />
  151.             <p>
  152.                <span>11:45 a.m.</span> Congratulations, you've reached the top!
  153.                Time for lunch and a few photos.
  154.             </p>
  155.     </a>
  156.       </div>
  157.  
  158.    </div>
  159.  
  160. </body>
  161. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement