HTML

index.html

Jan 30th, 2018
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.55 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 { background-color: #00005D;
  8.       font-family: Verdana, Arial, sans-serif;
  9. }
  10. #wrapper { margin: 0 auto;
  11.           width: 960px;
  12.           background-color: #B3C7E6;
  13.           color: #000066;
  14. }    
  15. header { height: 150px;
  16.          margin-bottom: 0;
  17.          background-image: url(lighthousebanner.jpg);
  18.          background-repeat: no-repeat; }
  19.  
  20. nav { float: right;
  21.      width: 200px;
  22.      font-weight: bold;
  23.      letter-spacing: 0.1em;
  24. }
  25. h1 { text-indent: 100%;
  26.      white-space: nowrap;
  27.      overflow: hidden;
  28. }
  29. main { display: block;
  30.        background-color: #ffffff;
  31.        color: #000000;
  32.        padding: 10px 20px;
  33.        overflow: auto;
  34. }
  35. footer { font-size: 70%;
  36.          text-align: center;
  37.          padding: 10px;
  38.          background-color: #869DC7;
  39.          clear: both;
  40. }
  41. h2 { color: #869DC7;
  42.     font-family: Arial, sans-serif;
  43. }
  44. #floatright { float: right;
  45.               margin: 10px;
  46. }
  47. nav ul { list-style-type: none;
  48.        margin: 0;
  49.        padding: 0;
  50. }
  51. nav a { text-decoration: none;
  52.        padding: 20px;
  53.        display: block;
  54.        background-color: #B3C7E6;
  55.        border-bottom: 1px solid #FFFFFF;
  56. }
  57. nav a:link       { color: #FFFFFF; }
  58. nav a:visited { color: #EAEAEA; }
  59. nav a:hover     { color: #869DC7;
  60.                background-color: #EAEAEA; }
  61. </style>
  62. </head>
  63. <body>
  64. <div id="wrapper">
  65.   <header>
  66.     <h1>Lighthouse Island Bistro</h1>
  67.   </header>
  68.   <nav>
  69.     <ul>
  70.      <li><a href="index.html">Home</a></li>
  71.      <li><a href="rooms.html">Menu</a></li>
  72.      <li><a href="directions.html">Directions</a></li>
  73.      <li><a href="contact.html">Contact</a></li>
  74.     </ul>
  75.    </nav>
  76.   <main>
  77.     <h2>Locally Roasted Free-Trade Coffee</h2>
  78.     <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
  79.     <h2>Specialty Pastries</h2>
  80.     <p>Enjoy a selection of our fresh-baked, organic pastries, including fresh-fruit muffins, scones, croissants, and cinammon rolls.</p>
  81.     <h2>Lunchtime is Anytime</h2>
  82.     <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
  83.     <h2>Panoramic View</h2>
  84.     <p>Take in some scenery!</p>
  85.     <p>The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.</p>
  86.    </main>
  87.    <footer>Copyright &copy; 2014
  88.    </footer>
  89.   </div> <!-- end of wrapper -->
  90. </body>
  91. </html>
Advertisement
Add Comment
Please, Sign In to add comment