forked from Avishka-Chandrawansha/web-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb test.html
More file actions
81 lines (58 loc) · 2.69 KB
/
web test.html
File metadata and controls
81 lines (58 loc) · 2.69 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
<!DOCTYPE html>
<html>
<head>
<title>My second webpage</title>
<style>
#reg-form{
height: 200px;
background-image: linear-gradient(white, gray);
}
</style>
</head>
<body>
<h1>Registration form</h1>
<div id="reg-form">
<form action="" method="">
<label for="first-name">First Name:</label>
<input type="text" name="first-name" placeholder="Arya" required>
<label for="last-name">First Name:</label>
<input type="text" name="last-name" placeholder="paul" required>
<div>
<label for="gender-male">Male </label>
<input type="radio" name="gender-choice" value="choice-1">
<label for="gender-female">Female </label>
<input type="radio" name="gender-choice" value="choice-2">
<label for="gender-other">Other </label>
<input type="radio" name="gender-choice" value="choice-3">
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" placeholder="xyz@email.com">
<label for="password">Password</label>
<input type="password" name="email">
</div>
<div>
<label for="Month">Birthday</label>
<select name="Month">
<option value="0" selected disabled>Month</option>
<option value="Jan">January</option>
<option value="Feb">Febuary</option>
<option value="March">March</option>
<option value="April">April</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="July">July</option>
<option value="August">August</option>
<option value="Sept">September</option>
<option value="Oct">Octomber</option>
<option value="Nov">November</option>
<option value="Dec">December</option>
</select>
</div>
<label for="agree">I agree to all the conditions of the form</label>
<input type="checkbox" name="agree">
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>