HTML

index.html

Jan 30th, 2018
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.39 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. header, main, footer, section, article, figure, figcaption, aside { display: block; }
  8. body { font-family:Verdana, Arial, sans-serif;
  9.       background-color: #00005D;
  10. }
  11. #wrapper { background-color: #b3c7e6;
  12.            color: #000066;
  13.            width: 80%;
  14.            margin: auto;
  15.            min-width: 960px;
  16.            max-width: 1200px;
  17. }
  18. nav { float: left;
  19.       width: 150px;
  20. }
  21. nav ul { list-style-type: none;
  22.          margin-left: 0;
  23.          padding: 10px;
  24. }
  25. nav a { text-decoration: none;
  26.         padding: 10px;
  27.         font-weight: bold;
  28. }
  29. nav a:link { color: #ffffff; }
  30. nav a:visited { color: #eaeaea; }
  31. nav a:hover { color: #000066; }
  32. main { display: block; /* for Internet Explorer version 10 and below */
  33.         margin-left: 155px;
  34.         padding: 20px;
  35.         background-color: #ffffff;
  36.         color: #000000;
  37. }
  38. header { background-color: #869dc7;
  39.         color: #00005D;
  40.         font-size: 150%;
  41.         padding: 10px 10px 10px 155px;
  42.         background-image: url(lighthouselogo.jpg);
  43.         background-repeat: no-repeat;
  44.         height: 130px;
  45. }
  46. h1 { margin-bottom: 0; }
  47. #tagline { padding-right: 20px;
  48.        font-size: .80em;
  49.        font-style: italic;
  50.        text-align: right;
  51.        color: #00005D;
  52. }          
  53. h2 { color: #869dc7;
  54.      font-family: arial, sans-serif;
  55.      font-size: 200%;
  56. }
  57. article header { background-color: #FFFFFF;
  58.                  background-image: none;
  59.                  padding-left: 0;
  60.                  font-size: 90%;
  61.                  height: auto;
  62. }
  63. #floatright { margin: 10px;
  64.               float: right;
  65. }
  66. aside { float: right;
  67.         width: 200px;
  68.         margin-right: 40px;
  69.         background-color: #eaeaea;
  70.         padding: 20px;
  71.         font-size: 80%;
  72.         box-shadow: 5px 5px 5px #333333;
  73.         position: relative;
  74.         top: -40px;
  75. }
  76. footer { font-size:70%;
  77.          text-align: center;
  78.          clear: right;
  79.          background-color: #869dc7;
  80.          padding: 20px;
  81. }
  82. </style>
  83. <!--[if lt IE 9]>
  84. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
  85. </script>
  86. <![endif]-->
  87. </head>
  88. <body>
  89. <div id="wrapper">
  90.  <header>
  91.     <h1>Lighthouse Island Bistro</h1>
  92.     <div id="tagline">the best coffee on the coast</div>
  93.   </header>
  94.   <nav>
  95.     <ul>
  96.       <li><a href="index.html">Home</a></li>
  97.       <li><a href="rooms.html">Menu</a></li>
  98.       <li><a href="directions.html">Directions</a></li>
  99.       <li><a href="contact.html">Contact</a></li>
  100.     </ul>
  101.   </nav>
  102.   <main>
  103.       <h2>Bistro Blog</h2>
  104.       <aside>Watch for the March Madness Wrap next month!</aside>
  105.       <section>
  106.          <article>
  107.            <header><h1>Valentine Wrap</h1></header>
  108.            <time datetime="2014-02-01">February 1, 2014</time>
  109.            <p>The February special sandwich is the Valentine Wrap &mdash; heart healthy organic chicken with roasted red peppers on a whole wheat wrap.</p>
  110.          </article>
  111.          <article>
  112.            <header><h1>New Coffee of the Day Promotion</h1></header>
  113.            <time datetime="2014-01-12">January 12, 2014</time>
  114.            <p>Enjoy the best coffee on the coast in the comfort of your home. We will feature a different flavor of our gourmet, locally roasted coffee each day with free bistro tastings and a discount on one-pound bags.</p>
  115.         </article>
  116.       </section>
  117.     </main>
  118.     <footer>Copyright &copy; 2014
  119.     </footer>
  120. </div>
  121. </body>
  122. </html>
Advertisement
Add Comment
Please, Sign In to add comment