-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
63 lines (60 loc) · 2.34 KB
/
form.html
File metadata and controls
63 lines (60 loc) · 2.34 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
<!DOCTYPE html>
<html>
<head>
<title>Info Form</title>
<link rel="stylesheet" href="formStyle.css"/>
</head>
<body>
<div class="formDiv">
<form name="form">
Username:
<input type="text" name="username">
<br><br>
Email:
<input type="text" name="email">
<br><br>
Phone Number:
<input type="text" name="pnum">
<br><br>
Enter Password:
<input type="password" name="pwd">
<br><br>
Confirm Password:
<input type="password" name="pwd">
<br><br>
Gender:
<input type="radio" name="gender" value="male" id="ml">
<label for="ml">Male</label>
<input type="radio" name="gender" value="female" id="fl">
<label for="ml">Female</label>
<br><br>
Age Group:
<select name="age">
<option value="">Select Age Group</option>
<option value="<21yrs"> 21 years old</option>
<option value="21-25yrs">21-25 years old</option>
<option value="26-35yrs">26-35 years old</option>
<option value="36-50yrs">36-50 years old</option>
<option value=">50yrs">> 50 years old</option>
</select>
<br><br>
Favorite Music Genre:
<input type="checkbox" name="genre" value="pop" id="pop">
<label for="pop">Pop</label>
<input type="checkbox" name="genre" value="hiphop" id="hiphop">
<label for="hiphop">Hiphop</label>
<input type="checkbox" name="genre" value="jazz" id="jaz">
<label for="jazz">Jazz</label>
<input type="checkbox" name="genre" value="rock" id="rock">
<label for="rock">Rock</label>
<input type="checkbox" name="genre" value="classical" id="classical">
<label for="classical">Classical</label>
<input type="checkbox" name="genre" value="country" id="country">
<label for="country">Country</label>
<br><br>
<input type="button" name="submit/clear" value="submit" id="submit">
<input type="button" name="submit/clear" value="clear" id="clear">
</form>
</div>
</body>
</html>