Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Coffee Order</title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8. <h1>Coffee Order</h1>
  9. <form id="coffee_order" name="coffee_order" action="coffeeresults.php" method="get">
  10. <div>Caffeination:</div>
  11. <div>
  12. <input type="radio" id="regular" name="caffeination" value="regular">
  13. <label for="regular">Regular</label>
  14. </div>
  15. <div>
  16. <input type="radio" id="decaf" name="caffeination" value="decaf">
  17. <label for="decaf">Decaf</label>
  18. </div>
  19. <div>Blend:</div>
  20. <div>
  21. <select id="blend" name="blend">
  22. <option>Please select!</option>
  23. <option value="breakfast">Breakfast</option>
  24. <option value="french">French</option>
  25. <option value="house">House</option>
  26. </select>
  27. </div>
  28. <div>Add-Ins</div>
  29. <div>
  30. <input type="checkbox" id="sugar" name="addins" value="sugar">
  31. <label for="sugar">Sugar</label>
  32. </div>
  33. <div>
  34. <input type="checkbox" id="cream" name="addins" value="cream">
  35. <label for="cream">Cream</label>
  36. </div>
  37. <div>
  38. <button type="submit">Submit Order</button>
  39. </div>
  40. </form>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement