|
@@ -0,0 +1,52 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <title>Title</title>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+from容器
|
|
|
+<hr>
|
|
|
+<!--单行输入-->
|
|
|
+<form>
|
|
|
+ <label for="username">账号</label>
|
|
|
+ <input type="text" id="username" placeholder="请输入内容"><br><br>
|
|
|
+ <label>密码</label>
|
|
|
+ <input type="password" id="password" value="请输入内容">
|
|
|
+</form>
|
|
|
+<br><br>
|
|
|
+<hr>
|
|
|
+
|
|
|
+<!--单选(radio)-->
|
|
|
+<form>
|
|
|
+ <label for="">性别:</label>
|
|
|
+ <input type="radio" name="1">男
|
|
|
+ <input type="radio" name="1">女
|
|
|
+ <input type="radio" name="1">其他
|
|
|
+</form>
|
|
|
+
|
|
|
+<br><br>
|
|
|
+<hr>
|
|
|
+<!--多选(checkbox)-->
|
|
|
+<!--
|
|
|
+action=""向何处提交信息
|
|
|
+
|
|
|
+-->
|
|
|
+<form action="#">
|
|
|
+ <label for="">爱好:</label>
|
|
|
+ <input type="checkbox" name="爱好">唱歌
|
|
|
+ <input type="checkbox" name="爱好">跳舞
|
|
|
+ <input type="checkbox" name="爱好">画画
|
|
|
+ <input type="checkbox" name="爱好">足球 <br>
|
|
|
+ <input type="submit" value="提交">
|
|
|
+</form>
|
|
|
+<br><br>
|
|
|
+<hr>
|
|
|
+
|
|
|
+<!---->
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</body>
|
|
|
+</html>
|