Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>JavaJam Coffee House Menu</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link href="javajam.css" rel="stylesheet">
- <link href="favicon.ico" rel="icon">
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
- </script>
- <![endif]-->
- </head>
- <body>
- <div id="wrapper">
- <header><img src="javalogo.gif" alt="JavaJam Coffee House" height="117" width="619"></header>
- <nav>
- <ul>
- <li><a href="index.html">Home</a></li>
- <li><a href="menu.html">Menu</a></li>
- <li><a href="music.html">Music</a></li>
- <li><a href="jobs.html">Jobs</a></li>
- </ul>
- </nav>
- <main>
- <table id="menu">
- <tr>
- <th>Menu Item</th>
- <th>Description</th>
- <th>Price</th>
- </tr>
- <tr>
- <th>Just Java</th>
- <td>Regular house blend, decaffeniated coffee, or<br>flavor of the day.</td>
- <td>Endless Cup<br>$2.00</td>
- </tr>
- <tr>
- <th>Cafe au Lait</th>
- <td>House blended coffee infused into a smooth,<br>steamed milk.</td>
- <td>Single $2.00<br>Double $3.00</td>
- </tr>
- <tr>
- <th>Iced<br>Cappuccino</th>
- <td>Sweetened espresso blended with icy-cold milk<br>and served in a chilled glass.</td>
- <td>Single $4.75<br>Double $5.75</td>
- </tr>
- </table>
- </main>
- <footer>
- Copyright © 2013 JavaJam Coffee House<br>
- </footer>
- </div>
- </body>
- </html>
Advertisement