12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div>
- <h1>欢迎注册网易免费邮箱</h1>
- <p>手机号码@163.com方便好记</p>
- <p>手机号:
- <input type="text" placeholder="手机号码">
- </p>
- <p>
- 密码:
- <input type="password" placeholder="密码">
- </p>
- <p>
- <input type="checkbox">同意《服务条款》、《隐私政策》和《儿童隐私政策》
- </p>
- <button>立即注册</button>
- </div>
- </body>
- </html>
|