HTML

fixed.html

Jan 30th, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.47 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:940px;
  15. }
  16. #leftcolumn { float: left;
  17.               width: 150px;
  18. }
  19. #rightcolumn { margin-left: 155px;
  20.                background-color: #ffffff;
  21.                color: #000000;
  22. }
  23. header { background-color: #869dc7;
  24.         color: #00005D;
  25.         font-size: 150%;
  26.         padding: 10px 10px 10px 155px;
  27.         background-image: url(lighthouselogo.jpg);
  28.         background-repeat: no-repeat;
  29.         height: 130px;
  30. }
  31. h2 { color: #869dc7;
  32.      font-family: arial, sans-serif;
  33. }
  34. main { display: block;
  35.        padding: 20px 20px 0 20px;
  36. }
  37. #floatright { margin: 10px;
  38.              float: right;
  39. }
  40.  
  41. footer {font-size:70%;
  42.          text-align: center;
  43.          clear: right;
  44.          padding-bottom:20px;
  45. }
  46. nav { position: fixed; }
  47. nav ul { list-style-type: none;
  48.          padding: 10px; }
  49. nav a { text-decoration: none;
  50.         padding: 10px;
  51.         font-weight: bold; }
  52.  
  53. </style>
  54. </head>
  55. <body>
  56. <div id="wrapper">
  57.   <header>
  58.     <h1>Lighthouse Island Bistro</h1>
  59.   </header>
  60.   <div id="leftcolumn">
  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.   </div>
  70.   <div id="rightcolumn">
  71.     <main>
  72.       <img src="lighthouseisland.jpg" width="250" height="355" id="floatright" alt="Lighthouse Island">
  73.     <h2>Locally Roasted Free-Trade Coffee</h2>
  74.     <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
  75.     <h2>Specialty Pastries</h2>
  76.     <p>Enjoy a selection of our fresh-baked, organic pastries, including
  77.   fresh-fruit muffins, scones, croissants, and cinammon rolls.</p>
  78.     <h2>Lunchtime is Anytime</h2>
  79.     <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
  80.     <h2>Panoramic View</h2>
  81.     <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>
  82.     </main>
  83.     <footer>Copyright &copy; 2014
  84.     </footer>
  85.   </div>
  86. </div>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment