HTML

menu.html

Jan 30th, 2018
601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.05 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. <link rel="stylesheet" href="javajam.css">
  7. </head>
  8. <body>
  9. <div id="wrapper">
  10. <header><h1>JavaJam Coffee House</h1></header>
  11. <nav>
  12.  <a href="index.html">Home</a>&nbsp;
  13.  <a href="menu.html">Menu</a>&nbsp;
  14.  <a href="music.html">Music</a>&nbsp;
  15.  <a href="jobs.html">Jobs</a>&nbsp;
  16. </nav>
  17. <main>
  18. <dl>
  19.   <dt><strong>Just Java</strong></dt>
  20.     <dd>Regular house blend, decaffeinated coffee, or flavor of the day.<br>
  21. Endless Cup $2.00</dd>
  22.   <dt><strong>Cafe au Lait</strong></dt>
  23.     <dd>House blended coffee infused into a smooth, steamed milk.<br>
  24. Single $2.00 &nbsp;Double $3.00</dd>
  25.   <dt><strong>Iced Cappuccino</strong></dt>
  26.     <dd>Sweetened espresso blended with icy-cold milk and served in a chilled glass.<br>
  27. Single $4.75 &nbsp;Double $5.75</dd>
  28. </dl>
  29. </main>
  30. <footer>
  31. Copyright &copy; 2014 JavaJam Coffee House<br>
  32. </footer>
  33. </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment