HTML

menu.html

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