-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek3-forms.html
More file actions
203 lines (187 loc) · 5.41 KB
/
Copy pathWeek3-forms.html
File metadata and controls
203 lines (187 loc) · 5.41 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Unlock the potential of HTML forms and attributes to create interactive and dynamic web pages."
/>
<meta name="keywords" content="HTML-Forms and Attributes" />
<link rel="shortcut icon" href="./Images/html.jpg" type="image/x-icon" />
<title>ASSIGNMENT 3: HTML FORMS</title>
</head>
<body>
<main>
<h1>ASSIGNMENT ON HTML FORMS</h1>
<h2>Registration Form</h2>
<form action="/submit-form" method="get" target="_blank">
<div>
<label for="name">Full Name: </label>
<br />
<input
type="text"
name="fullName"
id="name"
placeholder="Please enter your full name"
size="30"
required
/>
<hr />
</div>
<div>
<label for="email">Email Address: </label>
<br />
<input
type="email"
name="emailAddress"
id="email"
placeholder="Please enter your email address"
size="30"
required
/>
<hr />
</div>
<div>
<label for="age">Age(years old): </label>
<br />
<input
type="number"
name="age"
id="age"
placeholder="Please indicate your age"
min="18"
max="65"
step="1"
required
/>
<hr />
</div>
<div>
<label for="mobileNumber">Phone Number: </label>
<br />
<input
type="tel"
name="phoneNumber"
id="mobileNumber"
placeholder="E.g., (0)-789-456-123"
pattern="[0-9]{10}"
required
/>
<hr />
</div>
<div>
<label for="DateOfBirth">Date of Birth: </label>
<br />
<input type="date" name="DateOfBirth" id="DateOfBirth" required />
<hr />
</div>
<div>
<label for="CountryOfResidence">Country Of Residence: </label>
<br />
<select name="CountryOfResidence" id="CountryOfResidence" required>
<option value="Select your Country" selected disabled>
Select your Country
</option>
<option value="Ghana">Ghana</option>
<option value="Nigeria">Nigeria</option>
<option value="Kenya">Kenya</option>
<option value="South Africa">South Africa</option>
<option value="The Gambia">The Gambia</option>
<option value="Togo">Togo</option>
<option value="Uganda">Uganda</option>
<option value="Rwanda">Rwanda</option>
<option value="Egypt">Egypt</option>
<option value="Lesotho">Lesotho</option>
</select>
<hr />
</div>
<div>
<fieldset>
<legend>User's Interest</legend>
<label for="gender">Gender: </label>
<br />
<label for="male">Male</label>
<input type="radio" name="gender" id="male" value="Male" required />
<label for="female">Female</label>
<input
type="radio"
name="gender"
id="female"
value="Female"
required
/>
<br />
<hr />
<label for="hobbies">Hobbies: </label>
<br />
<label for="movies">Movies</label>
<input
type="checkbox"
name="hobbies"
id="movies"
value="movies"
required
/>
<label for="music">Music</label>
<input
type="checkbox"
name="hobbies"
id="music"
value="music"
required
/>
<label for="reading">Reading</label>
<input
type="checkbox"
name="hobbies"
id="reading"
value="reading"
required
/>
<label for="football">Football</label>
<input
type="checkbox"
name="hobbies"
id="football"
value="football"
required
/>
<label for="travel">Travel</label>
<input
type="checkbox"
name="hobbies"
id="travel"
value="travel"
required
/>
<label for="sports">Sports</label>
<input
type="checkbox"
name="hobbies"
id="sports"
value="sports"
required
/>
</fieldset>
<hr />
</div>
<div>
<label for="feedback">Additional Comments or Feedback: </label>
<br />
<textarea
name="feedback"
id="feedback"
cols="70"
rows="10"
placeholder="Please enter your comments or feedback here"
required
></textarea>
</div>
<div>
<input type="submit" value="Submit" aria-label="Save and Submit" />
</div>
</form>
</main>
</body>
</html>