Guest User

Untitled

a guest
May 8th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Radio Buttons not mutually exclusive : HTML [closed]
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <title></title>
  7. </head>
  8. <body>
  9. <div>
  10. <form>
  11. First name: <input type="text" name="firstname" /><br />
  12. Subscribe? <input type="checkbox" name="subscribe" /><br />
  13. FedEx! <input type="radio" name="deliveryoption" /><br />
  14. DHL! <input type="radio" name="deliveryoption" /><br />
  15. <input type="submit" name="submit" value="Send Data" />
  16. </form>
  17. </div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment