-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
110 lines (87 loc) · 2.5 KB
/
Copy pathforms.html
File metadata and controls
110 lines (87 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FORM TUTORIAL</title>
<style>
body {
background-color: #202020;
color: #f0f0f0;
}
</style>
</head>
<body>
<h1>FORMS</h1>
<!-- FORMS -->
<form>
<!-- PERSONAL SECTION AREA -->
<fieldset>
<legend>Personal Info</legend>
<!-- FIRSTNAME -->
<label for="firstname">FirstName *</label>
<input
type="text"
id="firstname"
name="firstname"
required
placeholder="Enter your first name"
/>
<br />
<br />
<!-- LASTNAME -->
<label for="lastname">LastName *</label>
<input
type="text"
id="lastname"
name="lastname"
required
placeholder="kindly enter your lastname"
/>
<br />
<br />
<!-- PASSWORD -->
<label for="password">Password:</label>
<input type="password" id="password" name="password" required />
<br />
<br />
<!-- EMAIL -->
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
<br />
<br />
<!-- NUMBER -->
<label for="age">Age:</label>
<input type="number" id="age" name="age" min="1" max="100" />
</fieldset>
<br /><br />
<!-- OTHERS -->
<fieldset>
<legend>Others</legend>
<!-- CHECKBOX -->
<p>FAVORITE FOODS</p>
<label> <input type="checkbox" name="food" value="rice" /> Rice </label>
<label><input type="checkbox" name="food" value="beans" /> Beans</label>
<label> <input type="checkbox" name="food" value="yam" /> Yam </label>
<br /><br />
<!-- RADIO -->
<p>GENDER</p>
<label><input type="radio" name="gender" value="male" /> Male</label>
<label
><input type="radio" name="gender" value="female" /> Female</label
>
<br /><br />
<!-- DATE -->
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob" />
<br /><br />
<!-- FILE -->
<label for="resume">Upload Resume:</label>
<input type="file" id="resume" name="resume" />
</fieldset>
<br />
<!-- SUBMIT -->
<input type="submit" value="Submit" />
</form>
</body>
</html>