HTML

starter.html

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