HTML

twocolumn4.html

Jan 30th, 2018
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.27 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. nav ul { list-style-type: none;
  44. }
  45. nav a {text-decoration: none;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div id="wrapper">
  51.   <header>
  52.     <h1>Lighthouse Island Bistro</h1>
  53.   </header>
  54.   <nav>
  55.     <ul>
  56.       <li><a href="index.html">Home</a></li>
  57.       <li><a href="rooms.html">Menu</a></li>
  58.       <li><a href="directions.html">Directions</a></li>
  59.       <li><a href="contact.html">Contact</a></li>
  60.     </ul>
  61.   </nav>
  62.   <div id="rightcol">
  63.     <main>
  64.       <img src="lighthouseisland.jpg" width="250" height="355" id="floatright" alt="Lighthouse Island">
  65.     <h2>Locally Roasted Free-Trade Coffee</h2>
  66.     <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
  67.     <h2>Specialty Pastries</h2>
  68.     <p>Enjoy a selection of our fresh-baked, organic pastries, including
  69.   fresh-fruit muffins, scones, croissants, and cinammon rolls.</p>
  70.     <h2>Lunchtime is Anytime</h2>
  71.     <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
  72.     <h2>Panoramic View</h2>
  73.     <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>
  74.     </main>
  75.     <footer>Copyright &copy; 2014
  76.     </footer>
  77.   </div>
  78. </div>
  79. </body>
  80. </html>
Advertisement
Add Comment
Please, Sign In to add comment