forked from ayushi001-svg/accessible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwb.html
More file actions
85 lines (59 loc) · 2.04 KB
/
wb.html
File metadata and controls
85 lines (59 loc) · 2.04 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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>
<main>
<h1>Schools 120.com</h1>
<form action="/action.php">
<input type="text" placeholder="Username">
<br><br>
<input type="password" placeholder="Password">
<br><br>
<h5>Select your class</h5>
<label for="101">
<input type="radio" val="Class XI" name="class" roll no.="101">Class XI
</label>
<br><br>
<label for="102">
<input type="radio" val="Class XII" name="class" roll no.="102">Class XII
</label>
<h5>Select your hobbies</h5>
<label for="singing">
<input type="checkbox" value="singing" name="hobbie">Singing
</label>
<label for="dancing">
<input type="checkbox" value="dancing" name="hobbie">Dancing
</label>
<label for="painting">
<input type="checkbox" value="painting" name="hobbie">Painting
</label>
<label for="horse riding">
<input type="checkbox" value="horse riding" name="hobbie">Horse Riding
</label>
<h5>Select fav sports</h5>
<label for="badminton">
<input type="checkbox" value="badminton" name="sports">Badminton
</label>
<label for="cricket">
<input type="checkbox" value="cricket" name="sports">Cricket
</label>
<label for="volleyball">
<input type="checkbox" value="volleyball" name="sports">Volleyball
</label>
<label for="hockey">
<input type="checkbox" value="hockey" name="sports">Hockey
<br><br>
FEEDBACK:
<form action="/action.php">
<input type="text">
</form>
<footer>Thank you for your valuable feedback</footer>
</body>
</html>
</body>
</html>
</table>