|
@@ -0,0 +1,54 @@
|
|
|
|
+<!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>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <input type="text">
|
|
|
|
+
|
|
|
|
+ <input type="password">
|
|
|
|
+
|
|
|
|
+ <input type="button" value="按钮">
|
|
|
|
+ <button>按钮</button>
|
|
|
|
+
|
|
|
|
+ <input type="radio" name="sex">男
|
|
|
|
+ <input type="radio" name="sex">女
|
|
|
|
+
|
|
|
|
+ <input type="checkbox" name="hobby">篮球
|
|
|
|
+ <input type="checkbox" name="hobby">足球
|
|
|
|
+ <input type="checkbox" name="hobby">乒乓球
|
|
|
|
+
|
|
|
|
+ <select multiple>
|
|
|
|
+ <option value="001">黑大</option>
|
|
|
|
+ <option value="002">黑工程</option>
|
|
|
|
+ <option value="">理工</option>
|
|
|
|
+ <option value="">华德</option>
|
|
|
|
+ </select>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <textarea cols="20" rows="5"></textarea>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <input type="file">
|
|
|
|
+ <br/>
|
|
|
|
+ <br/>
|
|
|
|
+ <br/>
|
|
|
|
+ <br/>
|
|
|
|
+ <br/>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <form action="http://localhost:4000" method="get">
|
|
|
|
+ 用户名:<input type="text" name="username">
|
|
|
|
+ 密码:<input type="password" name="password">
|
|
|
|
+
|
|
|
|
+ <input type="submit" value="提交">
|
|
|
|
+ </form>
|
|
|
|
+</body>
|
|
|
|
+</html>
|