-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
31 lines (30 loc) · 1.07 KB
/
Copy pathform.html
File metadata and controls
31 lines (30 loc) · 1.07 KB
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
<!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>
<form action="">
昵称:<input type="text" name="" id=""><br>
密码:<input type="password" name=" "id=""><br>
邮箱:<input type="email" name=""id="">
<select>
<option>qq.com </option>
<option>163.com </option>
<option>gmail.com</option>
</select><br>
性别:<input type="radio"name="sex" id="" checked>男<input type="radio" name="sex" id="">女<br>
爱好:<input type="checkbox"name="hobby" id="">摄影<input type="checkbox" name="hobby" id="">运动<input type="checkbox" name="hobby" id="">旅游<br>
个人简介:<br>
<textarea name="file" name="" id="" cols="40" rows="10"></textarea><br>
上传个人照片:<br>
<input type="file" name="" id="">
<hr>
<center>
<input type="submit" value="立即注册">
</center>
</form>
</body>
</html>