6.表单练习.html 686 B

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