-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
37 lines (36 loc) · 1.05 KB
/
form.html
File metadata and controls
37 lines (36 loc) · 1.05 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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>form</title>
</head>
<body>
<form>
<label>
First name:<br><input type="text">
</label><br>
<label>
Last name:<br><input type="text">
</label><br>
<label>
password<br>
<input type="password">
</label>
<input type="radio" value="HTML" id="HTML" name="_h">
<label>HTML</label><br>
<input type="radio" value="CSS" name="_h">
<label>CSS</label><br>
<input type="radio" value="JS" name="_h">
<label>JS</label><br>
<input type="checkbox">
<label>css</label>
<input type="checkbox">
<label>html</label>
<input type="checkbox">
<label>js</label>
<input type="submit" value="提交">
<button>hi</button><br>
<textarea>hi</textarea>
</form>
</body>
</html>