HTML

javajam8-menu.html

Sep 29th, 2017
768
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>JavaJam Coffee House Menu</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link href="javajam.css" rel="stylesheet">
  8. <link href="favicon.ico" rel="icon">
  9. <!--[if lt IE 9]>
  10. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
  11. </script>
  12. <![endif]-->
  13. </head>
  14.  
  15. <body>
  16. <div id="wrapper">
  17. <header><img src="javalogo.gif" alt="JavaJam Coffee House" height="117" width="619"></header>
  18.  
  19. <nav>
  20. <ul>
  21. <li><a href="index.html">Home</a></li>
  22. <li><a href="menu.html">Menu</a></li>
  23. <li><a href="music.html">Music</a></li>
  24. <li><a href="jobs.html">Jobs</a></li>
  25. </ul>
  26. </nav>
  27.  
  28. <main>
  29. <table id="menu">
  30.     <tr>
  31.     <th>Menu Item</th>
  32.     <th>Description</th>
  33.     <th>Price</th>
  34.     </tr>
  35.     <tr>
  36.     <th>Just Java</th>
  37.     <td>Regular house blend, decaffeniated coffee, or<br>flavor of the day.</td>
  38.     <td>Endless Cup<br>$2.00</td>
  39.     </tr>
  40.     <tr>
  41.     <th>Cafe au Lait</th>
  42.     <td>House blended coffee infused into a smooth,<br>steamed milk.</td>
  43.     <td>Single $2.00<br>Double $3.00</td>
  44.     </tr>
  45.     <tr>
  46.     <th>Iced<br>Cappuccino</th>
  47.     <td>Sweetened espresso blended with icy-cold milk<br>and served in a chilled glass.</td>
  48.     <td>Single $4.75<br>Double $5.75</td>
  49.     </tr>
  50. </table>
  51. </main>
  52.  
  53. <footer>
  54. Copyright &copy; 2013 JavaJam Coffee House<br>
  55. </footer>
  56.  
  57. </div>
  58. </body>
  59. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment