Blogger Information
Blog 5
fans 0
comment 0
visits 2564
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单制作过程
Fog.
Original
528 people have browsed it

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <!-- autofocus自动焦点 -->
  11. <!-- <form action="">向何处发送表单数据 -->
  12. <form action="" method="post">
  13. <div>
  14. <label for="name">用户名</label>
  15. <!-- type类型,name属性的名称,value值(输入的内容),placeholder预设值 -->
  16. <input
  17. id="name"
  18. type="text"
  19. name="username"
  20. value=" "
  21. placeholder="至少8位"
  22. />
  23. </div>
  24. <label for="pass">密码</label>
  25. <!-- type类型,name属性的名称,value值(输入的内容),placeholder预设值 -->
  26. <div>
  27. <input
  28. id="pass"
  29. type="password"
  30. name="password"
  31. value=" "
  32. placeholder="密码+数字"
  33. />
  34. </div>
  35. <div>
  36. <button>提交</button>
  37. </div>
  38. <div>
  39. <input type="checkbox" value="nv" />唱歌&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  40. <input type="checkbox" value="nv" />跳舞&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  41. <input type="checkbox" value="nv" />读书&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  42. <input type="checkbox" value="nv" />交友&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  43. <input type="checkbox" value="nv" />书法&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  44. <input type="checkbox" value="nv" />上网&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  45. <input type="checkbox" value="nv" />旅游&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  46. <input type="checkbox" value="nv" />聊天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  47. </div>
  48. </form>
  49. </body>
  50. </html>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post