HTML

index.html

Jan 30th, 2018
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.56 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: 960px;
  15.            max-width: 1200px;
  16. }
  17. nav { float: left;
  18.       width: 150px;
  19. }
  20. nav ul { list-style-type: none;
  21.          margin-left: 0;
  22.          padding: 10px;
  23. }
  24. nav a { text-decoration: none;
  25.         padding: 10px;
  26.         font-weight: bold;
  27. }
  28. nav a:link { color: #ffffff; }
  29. nav a:visited { color: #eaeaea; }
  30. nav a:hover { color: #000066; }
  31. main {  display: block; /* for Internet Explorer version 10 and below */
  32.         margin-left: 155px;
  33.         padding: 20px;
  34.         background-color: #ffffff;
  35.         color: #000000;
  36. }
  37. header { background-color: #869dc7;
  38.         color: #00005D;
  39.         font-size: 150%;
  40.         padding: 10px 10px 10px 155px;
  41.         background-image: url(lighthouselogo.jpg);
  42.         background-repeat: no-repeat;
  43. }
  44. h1 { margin-bottom: 20px; }
  45. h2 { color: #869dc7;
  46.      font-family: arial, sans-serif;
  47. }
  48.  
  49. #floatright { margin: 10px;
  50.               float: right;
  51. }
  52.  
  53. footer { font-size:70%;
  54.          text-align: center;
  55.          clear: right;
  56.          background-color: #869dc7;
  57.          padding: 20px;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <div id="wrapper">
  63.   <header>
  64.     <h1>Lighthouse Island Bistro</h1>
  65.   </header>
  66.   <nav>
  67.     <ul>
  68.       <li><a href="index.html">Home</a></li>
  69.       <li><a href="rooms.html">Menu</a></li>
  70.       <li><a href="directions.html">Directions</a></li>
  71.       <li><a href="contact.html">Contact</a></li>
  72.     </ul>
  73.   </nav>
  74.   <main>
  75.       <img src="lighthouseisland.jpg" width="250" height="355" id="floatright" alt="Lighthouse Island">
  76.     <h2>Locally Roasted Free-Trade Coffee</h2>
  77.     <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
  78.     <h2>Specialty Pastries</h2>
  79.     <p>Enjoy a selection of our fresh-baked, organic pastries, including
  80.   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! The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.</p>
  85.     </main>
  86.     <footer>Copyright &copy; 2014
  87.     </footer>
  88.  </div>
  89. </body>
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment