HTML

navigation.html

Jan 30th, 2018
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Lighthouse Island Bistro</title>
  5. <meta charset="utf-8">
  6. <style>
  7. body {font-family:Verdana, Arial, sans-serif;
  8.       background-color: #00005D;
  9. }
  10. #wrapper { background-color: #b3c7e6;
  11.            color: #000066;
  12.            width: 80%;
  13.            margin: auto;
  14.            min-width: 850px;
  15.            max-width: 1200px;
  16. }
  17.  
  18.  
  19. main { display: block; /* for Internet Explorer version 10 and below */
  20.        padding: 3em;
  21.        background-color: #ffffff;
  22.        color: #000000;
  23. }
  24. header { background-color: #869dc7;
  25.         color: #00005D;
  26.         font-size: 150%;
  27.         padding: 10px 10px 10px 30px;
  28.  
  29. }
  30. h2 { color: #869dc7;
  31.      font-family: arial, sans-serif;
  32. }
  33.  
  34. #floatright { margin: 10px;
  35.              float: right;
  36. }
  37.  
  38. footer {font-size:70%;
  39.          text-align: center;
  40.          clear: right;
  41.          padding-bottom:20px;
  42. }  
  43. nav ul { list-style-type: none;}
  44. nav li {  display: inline; }
  45. nav a  { text-decoration: none;
  46.          padding-right: 10px; }
  47. </style>
  48. </head>
  49. <body>
  50. <div id="wrapper">
  51.   <header>
  52.     <h1>Lighthouse Island Bistro</h1>
  53.   </header>
  54.   <nav>
  55.      <ul>
  56.       <li><a href="index.html">Home</a></li>
  57.       <li><a href="rooms.html">Menu</a></li>
  58.       <li><a href="directions.html">Directions</a></li>
  59.       <li><a href="contact.html">Contact</a></li>
  60.     </ul>
  61.   </nav>
  62.   <main>
  63.       <img src="lighthouseisland.jpg" width="250" height="355" id="floatright" alt="Lighthouse Island">
  64.     <h2>Locally Roasted Free-Trade Coffee</h2>
  65.     <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
  66.     <h2>Specialty Pastries</h2>
  67.     <p>Enjoy a selection of our fresh-baked, organic pastries, including
  68.   fresh-fruit muffins, scones, croissants, and cinammon rolls.</p>
  69.     <h2>Lunchtime is Anytime</h2>
  70.     <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
  71.     <h2>Panoramic View</h2>
  72.     <p>Take in some scenery! The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.</p>
  73.     </main>
  74.     <footer>Copyright &copy; 2014
  75.     </footer>
  76. </div>
  77. </body>
  78. </html>
Advertisement
Add Comment
Please, Sign In to add comment