-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormSolution.html
More file actions
75 lines (62 loc) · 1.49 KB
/
FormSolution.html
File metadata and controls
75 lines (62 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Form Solution</title>
</head>
<body>
<h1>Register</h1>
<form>
<label for="First Name">First Name: </label>
<input id="First Name" type="text" placeholder="John" required>
<label for="Last Name">Last Name: </label>
<input id="Last Name" type="text" placeholder="Smith" required>
<div>
<label for="Male">Male</label>
<input id="Male" name="gender" type="radio" value="Male" required>
<label for="Female">Female</label>
<input id="Female" name="gender" type="radio" value="Female" required>
<label for="Other">Other</label>
<input id="Other" name="gender" type="radio" value="Other" required>
</div>
<div>
<label>
Email:
<input name="Email" type="email" placeholder="your email" required>
</label>
<label>
Password:
<input name="Password" type="password" placeholder="password" required>
</label>
</div>
<label>
Birthday:
<select name="Month" required>
<option>Month</option>
<option>Febuary</option>
<option>March</option>
<option>April</option>
</select>
<select name="Day" required>
<option>Day</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
<select name="Year" required>
<option>Year</option>
<option>2018</option>
<option>2017</option>
<option>2016</option>
</select>
</label>
<div>
<label>
I agree to these terms and conditions
<input type="checkbox" required>
</label>
</div>
<div>
<input type="Submit">
</form>
</body>
</html>