-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_forms.html
102 lines (101 loc) · 3.68 KB
/
html_forms.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!---<table border="1" width="300px" cellpadding="10px" align="center">
<thead>
<tr>
<th>Name</th>
<th>Class</th>
<th>Marks</th>
</tr>
</thead>
<tbody align ="center">
<tr>
<td>Ankit</td>
<td>12th</td>
<td>40</td>
</tr>
<tr>
<td>Aman</td>
<td>12th</td>
<td>90</td>
</tr>
<tr>
<td>Virat </td>
<td>12th</td>
<td>88</td>
</tr>
</tbody>
<tfoot align ="center">
<tr>
<td>Total marks</td>
<td></td>
<td>218</td>
</tr>
</tfoot>
</table>
<iframe src="https://www.google.com">Google</iframe>
<!-- types of audio
1 mp3
2 ogg
3 wav -->
<form action="" mrthod="">
<fieldset>
<legend>Enter Your Details</legend>
<lebel>Name</lebel><input type="text" name="fname"><br><br>
<lebel>Emale</lebel><input type="text" Emale="emale"><br><br>
<lebel>Passward</lebel><input type="text" passward="pass"><br><br>
<lebel>Enter your Mobile.no</lebel><input type="text" Mobile.no="M.no"><br><br>
<lebel>Gender</lebel><br><br>
<input type="radio" name="gender" id="male"><label for"male">male</label>
<input type="radio" name="gender" id="female"><label for"female">female</label><br><br>
<label for="Date of Birth">Birth Date:</label>
<input type="date" id="birthday" name="Date of birth"><br><br>
<time></time>
<lebel>Hobbies</lebel><br>
<input type="checkbox" name="hobby" id="Bookreading"><label for"Bookreading">Bookreading</label>
<input type="checkbox" name="hobby" id="Music"><label for"Music">Music</label><br> <br>
<label>
Message
</label>
<textarea row="10" cols="50">click here for your message</textarea><br><br>
<label>Country</label><select>
<option value="aus ">Australia</option>
<option value="ch">China</option>
<option value="in" selected>India</option><br><br>
</select><br><br>
<label> Select yous bikes</label><select>
<outgroup label="Yamaha">
<option>Yamaha</option>
<option>Royal Enfield</option>
<option>Honda</option>
<option>Hero</option>
</outgroup>
<outgroup label="Royal enfield">
<option>Classic350</option>
<option>Meteor350</option>
<option>Intecepter</option>
<option>Bullet 350</option>
</outgroup>
</select><br> <br>
<label>Bikes</label> <input list="bikes">
<datalist id ="bikes">
<option value="Yamaha">
<option value="Royal enfield">
<option value="Honda">
<option value="Hero">
</datalist><br> <br>
<label>Uplode files</label><input type="file" accept="image/*" name="" /><br><br>
<input type="submit" value="save" />
<input type="reset" />
</fieldset>
</form>
<audio src="/Without-Me---Eminem(pagolworld.nl).mp3"controls></audio>
</body>
</html>