HTML

twocolumn3.html

Jan 30th, 2018
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.21 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: 800px;
  15.            max-width: 1200px;
  16. }
  17. nav { float: left;
  18.       width: 150px;
  19. }
  20. #rightcol { margin-left: 155px;
  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 155px;
  28. }
  29. h2 { color: #869dc7;
  30.      font-family: arial, sans-serif;
  31. }
  32. main { display: block; /* for Internet Explorer version 10 and below */
  33.        padding: 20px 20px 0 20px;
  34. }
  35. #floatright { margin: 10px;
  36.               float: right;
  37. }
  38. footer {font-size:70%;
  39.          text-align: center;
  40.          clear: right;
  41.          padding-bottom:20px;
  42. }  
  43.  
  44. </style>
  45. </head>
  46. <body>
  47. <div id="wrapper">
  48.   <header>
  49.     <h1>Lighthouse Island Bistro</h1>
  50.   </header>
  51.   <nav>
  52.     <ul>
  53.       <li><a href="index.html">Home</a></li>
  54.       <li><a href="rooms.html">Menu</a></li>
  55.       <li><a href="directions.html">Directions</a></li>
  56.       <li><a href="contact.html">Contact</a></li>
  57.     </ul>
  58.   </nav>
  59.   <div id="rightcol">
  60.     <main>
  61.       <img src="lighthouseisland.jpg" width="250" height="355" id="floatright" alt="Lighthouse Island">
  62.     <h2>Locally Roasted Free-Trade Coffee</h2>
  63.     <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
  64.     <h2>Specialty Pastries</h2>
  65.     <p>Enjoy a selection of our fresh-baked, organic pastries, including
  66.   fresh-fruit muffins, scones, croissants, and cinammon rolls.</p>
  67.     <h2>Lunchtime is Anytime</h2>
  68.     <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
  69.     <h2>Panoramic View</h2>
  70.     <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>
  71.     </main>
  72.     <footer>Copyright &copy; 2014
  73.     </footer>
  74.   </div>
  75. </div>
  76. </body>
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment