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