|
@@ -0,0 +1,53 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Document</title>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+
|
|
|
+<form action="xxx">
|
|
|
+
|
|
|
+ 用户名:<input type="text">
|
|
|
+
|
|
|
+ 密码:<input type="password">
|
|
|
+ <br>
|
|
|
+
|
|
|
+
|
|
|
+ 性别:
|
|
|
+ <input type="radio" name="sex">男
|
|
|
+ <input type="radio" name="sex">女
|
|
|
+
|
|
|
+ <br>
|
|
|
+
|
|
|
+
|
|
|
+ 爱好:
|
|
|
+ <input type="checkbox" name="hobby">吃饭
|
|
|
+ <input type="checkbox" name="hobby">睡觉
|
|
|
+ <input type="checkbox" name="hobby">敲代码
|
|
|
+ <br>
|
|
|
+
|
|
|
+ <select>
|
|
|
+ <option>黑大</option>
|
|
|
+ <option>理工</option>
|
|
|
+ <option>林大</option>
|
|
|
+ </select>
|
|
|
+ <br>
|
|
|
+
|
|
|
+ <textarea></textarea>
|
|
|
+ <br>
|
|
|
+
|
|
|
+
|
|
|
+ <button>按钮</button>
|
|
|
+
|
|
|
+ <input type="submit">
|
|
|
+
|
|
|
+ <input type="reset">
|
|
|
+</form>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</body>
|
|
|
+</html>
|