5.表单案例2.html 648 B

123456789101112131415161718192021
  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. <div>
  10. <h2>欢迎注册网易免费邮箱</h2>
  11. <p>手机号码@163.com方便好记</p>
  12. 手机号:<input type="text" placeholder="手机号码">
  13. <br><br>
  14. 密码:<input type="text" placeholder="密码">
  15. <br><br>
  16. <input type="checkbox">同意《服务条款》、《隐私政策》和《儿童隐私政策》
  17. <br><br>
  18. <input type="button" value="立即注册">
  19. </div>
  20. </body>
  21. </html>