demo1.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <h1>注册信息</h1>
  10. <form>
  11. 用户名:<input type="text" placeholder="请输入用户名" />
  12. <br><br>
  13. 密码:<input type="password" placeholder="请输入密码" />
  14. <br><br>
  15. 性别: <input type="radio" name="sex">男 <input type="radio" name="sex">女
  16. <br><br>
  17. 兴趣爱好:
  18. <input type="checkbox">足球
  19. <input type="checkbox" checked>蓝球
  20. <input type="checkbox">排球
  21. <input type="checkbox">游泳
  22. <input type="checkbox" disabled>网球
  23. <input type="checkbox">旅游
  24. <input type="checkbox">绘画
  25. <input type="checkbox">读书
  26. <br><br>
  27. 最高学历:
  28. <select>
  29. <option value="小学">小学</option>
  30. <option value="初中" selected>初中</option>
  31. <option value="高中">高中</option>
  32. <option value="大学">大学</option>
  33. </select>
  34. <br><br>
  35. 个人说明:
  36. <textarea cols="30" rows="20"></textarea>
  37. <br><br>
  38. <input type="reset">
  39. <input type="button" value="注册">
  40. </form>
  41. <a href="https://www.baidu.com">提示:注册成功之后请点击这里您将直接登录系统!</a>
  42. </body>
  43. </html>