Advertisement
Guest User

Untitled

a guest
Oct 10th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9. <form action="/abc" method="post">
  10. <div>Username: <input type="text" name="username" />
  11. </div>
  12. <div>
  13. Password:<input type="password" name="psw">
  14. </div>
  15. <div>
  16. 性别:男<input type="radio" name="sex" value="male" checked="true">
  17. 女<input type="radio" name="sex" value="female">
  18. </div>
  19. <div>出生年月:
  20. <select name="ages">
  21. <option value="1980">1980</option>
  22. <option value="1981">1981</option>
  23. <option value="1982">1982</option>
  24. <option value="1983">1983</option>
  25. </select>
  26. </div>
  27. 喜欢:
  28. <input type="checkbox" name="lan" value="html">html
  29. <input type="checkbox" name="lan" value="css">css
  30. <input type="checkbox" name="lan" value="javascript">javascript
  31. </div>
  32. <div>
  33. <input type="submit" value="submit">
  34. </div>
  35. </form>
  36.  
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement