HTML

twocolumn1.html

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