-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (101 loc) · 3.12 KB
/
index.html
File metadata and controls
111 lines (101 loc) · 3.12 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>User Registration Form</title>
</head>
<body>
<h1>User Registration</h1>
<form action="#" method="post">
<table border="1" cellpadding="5" cellspacing="5">
<tr>
<td>
<label for="name">Name:</label>
</td>
<td>
<input type="text" id="name" name="name" required />
</td>
</tr>
<tr>
<td>
<label for="email">Email:</label>
</td>
<td>
<input type="email" id="email" name="email" required />
</td>
</tr>
<tr>
<td>
<label for="password">Password:</label>
</td>
<td>
<input type="password" id="password" name="password" required />
</td>
</tr>
<tr>
<td>
<label>Gender:</label>
</td>
<td>
<input type="radio" id="male" name="gender" value="male" required />
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" />
<label for="female">Female</label>
<input type="radio" id="other" name="gender" value="other" />
<label for="other">Other</label>
</td>
</tr>
<tr>
<td>
<label>Hobbies:</label>
</td>
<td>
<input
type="checkbox"
id="reading"
name="hobbies[]"
value="reading"
/>
<label for="reading">Reading</label>
<input
type="checkbox"
id="sports"
name="hobbies[]"
value="sports"
/>
<label for="sports">Sports</label>
<input type="checkbox" id="music" name="hobbies[]" value="music" />
<label for="music">Music</label>
<input
type="checkbox"
id="travel"
name="hobbies[]"
value="travel"
/>
<label for="travel">Travel</label>
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Submit" /></td>
</tr>
</table>
</form>
<figure>
<audio controls>
<source src="./Every Type of Wealth (Explained).mp4" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<figcaption>Every Type of Wealth Explained</figcaption>
<a href="audio.mp3" download>Download Audio</a>
</figure>
<figure>
<video controls width="400">
<source src="./Every Type of Wealth (Explained).mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<figcaption>Every Type of Wealth Explained</figcaption>
<a href="video.mp4" download>Download Video</a>
</figure>
</body>
</html>