12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!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>
-
- <form action="hello.html" method="get">
-
-
-
- 用户名 <input type="text" name="username" /> <br />
-
- 密码 <input type="password" name="password" /> <br />
-
-
- <input type="radio" name="sex" value="1" /> 男
- <input type="radio" name="sex" value="0" checked="checked"/> 女
-
-
-
-
- <br />
- <br />
-
-
- <input type="checkbox" name="city" value="Beijing" checked/> 北京
- <input type="checkbox" name="city" value="Harbin" checked="checked"/> 哈尔滨
- <input type="checkbox" name="city" value="Shanghai"/> 上海
- <input type="checkbox" name="city" value="Guangzhou"/> 广州
- <input type="checkbox" name="city" value="Shenzhen"/> 深圳
- <br />
- <br />
- 喜欢的运动是
-
- <select name="interest">
- <option value="running">跑步</option>
- <option value="swimming">游泳</option>
- <option value="shooting">射击</option>
- <option value="null" selected="selected">--请选择--</option>
- </select>
- <br />
- <br />
- <input type="submit" value="登录" />
- <input type="reset" value="重置" />
- </form>
- </body>
- </html>
|