HTML

JavaJam / menu.html

Feb 24th, 2017
156
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.07 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="author" content="Jacob Howard">
  6. <link rel="stylesheet" href="style.css" type="text/css">
  7. <link rel="icon" href="favicon.ico" type="image/ico">
  8. <title>JavaJam Coffee House - Menu</title>
  9. </head>
  10. <body>
  11. <div id="wrapper">
  12. <header>
  13. <h1>JavaJam Coffee House</h1>
  14. </header>
  15. <nav>
  16. <a href="index.html">Home</a>&nbsp;|&nbsp;
  17. <a href="menu.html">Menu</a>&nbsp;|&nbsp;
  18. <a href="music.html">Music</a>&nbsp;|&nbsp;
  19. <a href="jobs.html">Jobs</a>
  20. </nav>
  21. <main>
  22. <dl id="menu">
  23.     <dt>Just Java</dt>
  24.     <dd>Regular house blend, decaffeinated coffee, or flavor of the day.<br>Endless Cup $2.00</dd>
  25.     <dt>Cafe au Lait</dt>
  26.     <dd>House blended coffee infused into a smooth, steamed milk.<br>Single $2.00 Double $3.00</dd>
  27.     <dt>Iced Cappuccino</dt>
  28.     <dd>Sweetened espresso blended with icy-cold milk and served in a chilled glass.<br>Single $4.75 Double $5.75</dd>
  29. </dl>
  30. </main>
  31. <footer>
  32. Copyright &copy; 2016 JavaJam Coffe House<br>
  33. </footer>
  34. </div>
  35. </body>
  36. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment