-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13_selecting.html
57 lines (56 loc) · 1.95 KB
/
13_selecting.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>checkbox</title>
</head>
<body>
<form action="/server">
<div>
<h1>choose your subjects</h1>
<input type="checkbox" name="sub" id="sub" value="math">
<label for="sub" >maths</label>
<input type="checkbox" name="sub" id="subs" value="eng">
<label for="subs" >english</label>
<input type="checkbox" name="sub" id="subject" value="hnd">
<label for="subject">hindi</label>
<button type="submit">submit</button>
</div>
<hr>
<div>
<h1>list of fruits</h1>
<input type="radio" id="apple" name="fruits" value="apple">
<label for="apple">apple</label>
<input type="radio" id="mango" name="fruits" value="mango">
<label for="mango">mango</label>
<input type="radio" id="orange" name="fruits" value="orange">
<label for="orange">orange</label>
<br>
<button>submit</button>
</div>
<hr>
<div>
<h1>occupation</h1>
<select name="profession" id="job">
<option >select your option</option>
<option value="stu">student</option>
<option value="dev">developer</option>
<option value="tchr">teacher</option>
<option value="sex">sex worker</option>
</select>
<button>submit</button>
</div>
<hr>
<div>
<input type="range" id="range" min="0" max="100" name="volume">
<label for="range">select your volume</label>
<button>submit</button>
<hr>
<input type="range" id="range" min="0" max="100" value="0" step="10" name="volume">
<label for="range">select your volume</label>
<button>submit</button>
</div>
</form>
</body>
</html>