-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathtable.html
More file actions
72 lines (53 loc) · 1.8 KB
/
table.html
File metadata and controls
72 lines (53 loc) · 1.8 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
<!DOCTYPE html>
<html>
<body>
<h1>Enter the details</h1>
<form>
First Namee:<br>
<input type="text" name="first name">
<br>
Last Name:<br>
<input type="text" name="last name">
<br><br>
<input type="submit"><br><br>
<textarea rows="4" cols="50">
</textarea><br><br>
<p><strong>Click on the details (RADIO BUTTON)</strong></p>
<form>
<label for="male">Male</label>
<input type="radio" name="gender" id="male" value="male"><br>
<label for="female">Female</label>
<input type="radio" name="gender" id="female" value="female"><br>
<label for="other">Other</label>
<input type="radio" name="gender" id="other" value="other"><br>
</form><br><br>
<p><strong>Click on the details (CHECKBOX)</strong></p>
<form>
<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1">I have a bike</label><br>
<input type="checkbox" id="vehicle2" name="vehicle2" value="Car">
<label for="vehicle2">I have a car</label><br>
<input type="checkbox" id="vehicle3" name="vehicle3" value="Baot">
<label for="vehicle3">I have a baot</label><br>
</form><br><br>
<p><strong>Click on the details (SELECT)</strong></p>
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel1">Opel1</option>
<option value="audi">Audi</option>
</select><br><br>
<h4><strong>BUTTON ELEMENT</strong></h4>
<button type="button">Click Me</button><br><br>
<h4><strong>field set</strong></h4>
<form>
<fieldset>
<legend>Personal Details:</legend>
Name<input type="text"><br>
Class<input type="text"><br>
USN<input type="text"><br>
</fieldset>
</form>
</form>
</body>
</html>