HTML

twocolumn2.html

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