Advertisement
conception

lab5.html

Oct 11th, 2015
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>CIS 223 Lab Assignment #5</title>
  5. </head>
  6. <body>
  7. <h1>Chinese Food Take Out</h1>
  8. <h2>Choose one of the following:</h2>
  9. <form name="entreeList">
  10. <p>
  11. <input type="radio" value="4.99" name="OPrice" />
  12. Kid $4.99
  13. <input type="radio" value="5.99" name="OPrice" />
  14. Two Entree $5.99
  15. <input type="radio" value="7.99" name="OPrice" />
  16. Three Entree $7.99
  17. <input type="radio" value="5.59" name="OPrice" />
  18. Bowl $5.59<br />
  19. </p>
  20. <h2>Add any of the following:</h2>
  21. <p>
  22. <input name="eggroll" type="checkbox" value="1.9" />EggRoll $1.90<br>
  23. <input name="soda" type="checkbox" value="1" />Soda $1.00<br>
  24. <input name="creamcheese" type="checkbox" value="1.7" />Cream Cheese Rangoon $1.70<br>
  25. <input name="chickenpotsticker" type="checkbox" value="1.2" />Chicken Potsticker $1.20<br>
  26. <input name="soup" type="checkbox" value="2" />Soup $2.00
  27. </p>
  28. <h2>Click the Submit button to see the Total Charge<br>
  29. <input type="button" value="Submit" id="submit" />
  30. <p id="total"></p>
  31. </form>
  32. <script src="Chinese.js">
  33.  
  34. </script>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement