-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.01 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form action="">
姓名:
<input type="text"><br>
密码:
<input type="password"><br><br>
血型:
<input type="radio" name="blood" value="A">A
<input type="radio" name="blood" value="B">B
<input type="radio" name="blood" checked value="O">O
<input type="radio" name="blood" value="AB">AB <br>
爱好:
<input type="checkbox" name="like" value="music">音乐
<input type="checkbox" name="like" value="play">玩
<input type="checkbox" name="like" value="sing">唱歌 <br>
年龄:
<select name="age" >
<option value="small">19-20</option>
<option value="middle" selected>20-22</option>
<option value="big">22以上</option>
</select><br>
注释:<br>
<textarea name="zhushi" cols="10" rows="5"></textarea>
<br> <br> 
<input type="submit" value="提交">
       
<input type="reset" value="重置"> <br>
</form>
</body>
</html>