demo1.html 879 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>demo1</title>
  6. </head>
  7. <body>
  8. <div>
  9. <h3>欢迎注册网易免费邮箱</h3>
  10. <p>手机号码@163.com,方便好记</p>
  11. <form action="">
  12. <!-- label:input框前的元素标记 -->
  13. <label>手机号</label>
  14. <input type="text" placeholder="手机号码">
  15. <br>
  16. <br>
  17. <label>密码</label>
  18. <input type="password" placeholder="密码">
  19. <br>
  20. <br>
  21. <input type="checkbox">同意《服务条款》、《隐私政策》和《儿童隐私政策》
  22. <br>
  23. <br>
  24. <input type="button" value="立即注册">
  25. </form>
  26. </div>
  27. </body>
  28. </html>