HTML

starter3.html

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