Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="author" content="Jacob Howard">
- <link rel="stylesheet" href="style.css" type="text/css">
- <link rel="icon" href="favicon.ico" type="image/ico">
- <title>JavaJam Coffee House - Menu</title>
- </head>
- <body>
- <div id="wrapper">
- <header>
- <h1>JavaJam Coffee House</h1>
- </header>
- <nav>
- <a href="index.html">Home</a> |
- <a href="menu.html">Menu</a> |
- <a href="music.html">Music</a> |
- <a href="jobs.html">Jobs</a>
- </nav>
- <main>
- <dl id="menu">
- <dt>Just Java</dt>
- <dd>Regular house blend, decaffeinated coffee, or flavor of the day.<br>Endless Cup $2.00</dd>
- <dt>Cafe au Lait</dt>
- <dd>House blended coffee infused into a smooth, steamed milk.<br>Single $2.00 Double $3.00</dd>
- <dt>Iced Cappuccino</dt>
- <dd>Sweetened espresso blended with icy-cold milk and served in a chilled glass.<br>Single $4.75 Double $5.75</dd>
- </dl>
- </main>
- <footer>
- Copyright © 2016 JavaJam Coffe House<br>
- </footer>
- </div>
- </body>
- </html>
Advertisement