1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
| <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body>
<form action="测试测试.html" method="get"> <span>账号:</span> <input type="text" name="username" required/> <br /><br /> <span>密码:</span> <input type="password" name="passwd" placeholder="请输入密码" required="required"/> <br /><br /> <span>性别:</span> <input type="radio" name="sss" value="男" checked />男 <input type="radio" name="sss" value="女"/>女
<br /><br /> <span>爱好:</span> <input type="checkbox" name="hobby" value="唱" checked="checked" />唱 <input type="checkbox" name="hobby" value="跳"/>跳 <input type="checkbox" name="hobby" value="rap" checked />rap <input type="checkbox" name="hobby" value="篮球">篮球 <br /><br /> <span>年龄:</span> <input type="number" name="age"/> <br /><br /> <span>邮箱:</span> <input type="email"/> <br /><br /> <span>附件:</span> <input type="file" /> <br /><br />
<textarea name="liuyan" rows="10" cols="30">内容写在这就可以啦</textarea> <br /><br /> <span>城市:</span> <select name="city"> <option value="郑州">郑州</option> <option value="杭州" selected>杭州</option> <option value="广州">广州</option> <option value="福州">福州</option> <option value="泉州">泉州</option> <option value="徐州">徐州</option> </select> <br /><br /> <input type="color" /> <br /> <input type="datetime" /> <br />
<input type="range" max="100" min="20" value="50"/> <br /> <input type="url" value="这是;链接url框"/> <br /> <input type="hidden" name="id" value="1"/> <br />
<input type="submit" value="提交"/> <input type="reset" value="重置"/> <input type="button" value="普通按钮"/> <button>普通按钮</button> </form> </body> </html>
|