Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Lighthouse Island Bistro</title>
- <meta charset="utf-8">
- <style>
- body { font-family:Verdana, Arial, sans-serif;
- background-color: #00005D;
- }
- #wrapper { background-color: #b3c7e6;
- color: #000066;
- width: 80%;
- margin: auto;
- min-width: 960px;
- max-width: 1200px;
- }
- nav { float: left;
- width: 150px;
- }
- nav ul { list-style-type: none;
- margin-left: 0;
- padding: 10px;
- }
- nav a { text-decoration: none;
- padding: 10px;
- font-weight: bold;
- }
- nav a:link { color: #ffffff; }
- nav a:visited { color: #eaeaea; }
- nav a:hover { color: #000066; }
- main { display: block; /* for Internet Explorer version 10 and below */
- margin-left: 155px;
- padding: 20px;
- background-color: #ffffff;
- color: #000000;
- }
- header { background-color: #869dc7;
- color: #00005D;
- font-size: 150%;
- padding: 10px 10px 10px 155px;
- background-image: url(lighthouselogo.jpg);
- background-repeat: no-repeat;
- height: 130px;
- }
- h1 { margin-bottom: 0; }
- #tagline { padding-right: 20px;
- font-size: .80em;
- font-style: italic;
- text-align: right;
- color: #00005D;
- }
- h2 { color: #869dc7;
- font-family: arial, sans-serif;
- font-size: 200%;
- }
- article header { background-color: #FFFFFF;
- background-image: none;
- padding-left: 0;
- font-size: 90%;
- height: auto;
- }
- #floatright { margin: 10px;
- float: right;
- }
- aside { float: right;
- width: 200px;
- margin-right: 40px;
- background-color: #eaeaea;
- padding: 20px;
- font-size: 80%;
- box-shadow: 5px 5px 5px #333333;
- position: relative;
- top: -40px;
- }
- footer { font-size:70%;
- text-align: center;
- clear: right;
- background-color: #869dc7;
- padding: 20px;
- }
- </style>
- </head>
- <body>
- <div id="wrapper">
- <header>
- <h1>Lighthouse Island Bistro</h1>
- <div id="tagline">the best coffee on the coast</div>
- </header>
- <nav>
- <ul>
- <li><a href="index.html">Home</a></li>
- <li><a href="rooms.html">Menu</a></li>
- <li><a href="directions.html">Directions</a></li>
- <li><a href="contact.html">Contact</a></li>
- </ul>
- </nav>
- <main>
- <h2>Bistro Blog</h2>
- <aside>Watch for the March Madness Wrap next month!</aside>
- <section>
- <article>
- <header><h1>Valentine Wrap</h1></header>
- <time datetime="2014-02-01">February 1, 2014</time>
- <p>The February special sandwich is the Valentine Wrap — heart healthy organic chicken with roasted red peppers on a whole wheat wrap.</p>
- </article>
- <article>
- <header><h1>New Coffee of the Day Promotion</h1></header>
- <time datetime="2014-01-12">January 12, 2014</time>
- <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>
- </article>
- </section>
- </main>
- <footer>Copyright © 2014
- </footer>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment