-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInput_Elements.html
75 lines (63 loc) · 2.34 KB
/
Input_Elements.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
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
<!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="\server">
<p><b>Checkbox</b></p>
<input type="checkbox" name="age" id="age">
<label for="age">I am 18+</label>
<br>
<hr>
<p><b>Checkbox~Grouped</b></p>
<div>
Choose Your Subjects:
<input type="checkbox" name="Subjects" id="Maths" value="Maths">
<label for="Maths">Maths</label>
<input type="checkbox" name="Subjects" id="Physics" value="Phy">
<label for="Physics">Physics</label>
<input type="checkbox" name="Subjects" id="Chemistry" value="Chem">
<label for="Chemistry">Chemistry</label>
<input type="checkbox" name="Subjects" id="Biology" value="Bio">
<label for="Biology">Biology</label>
</div>
<hr>
<div>
<p><b>Radio~Grouped</b></p>
<input type="radio" name="Fruits" id="Apple" value="Apple">
<label for="Apple">Apple</label>
<input type="radio" name="Fruits" id="Banana" value="Banana">
<label for="Banana">Banana</label>
<input type="radio" name="Fruits" id="Mango" value="Mango">
<label for="Mango">Mango</label>
<input type="radio" name="Fruits" id="Grapes" value="Grapes">
<label for="Grapes">Grapes</label>
</div>
<hr>
<p><b>Select Element</b></p>
<div>
Choose Your Profession
<select name="Profession" id="Profession">
<option>Select Your Option</option>
<option value="Student">Student</option>
<option value="Dev">Developer</option>
</select>
</div>
<hr>
<p><b>Range Element</b></p>
<div>
<label for="Volume">Select Your Volume Level</label>
<input type="range" id="vol" min="0" max="100" name="Volume">
</div>
<br>
<div>
<label for="Volume">Select Your Volume Level</label>
<input type="range" id="vol" min="0" max="100" name="Volume" step="10">
</div>
<button>Submit</button>
</form>
</body>
</html>