-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnaztee.html
More file actions
100 lines (87 loc) · 3.87 KB
/
Copy pathnaztee.html
File metadata and controls
100 lines (87 loc) · 3.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>naztee</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<br>
<form>
<fieldset>
<legend>personal information</legend>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email"
placeholder="example@gmail.com" required>
<label for="confirm_email">Confirm Email Address:</label>
<input type="email" id="confirm_email" name="confirm_email" placeholder="example@gmail.com" required>
<br>
<label for="surname">surname: <input type="text" placeholder="surname"></label>
<label for="middlename">middlename: <input type="text" placeholder="middlename"></label>
<br>
<label for="firstname">firstname: <input type="text" placeholder="firstname"></label>
<label for="dob">birthdate: <input type="date" name="dob"></label>
<br>
<label for="choice">religion:
<select name="choice" id="choice">
<option value="option">select religion</option>
<option value="option1">christian</option>
<option value="option2">muslim</option>
<option value="option3">pagan</option>
</select>
<label for="phone">contact: <input type="tel" name="phone" id="phone" placeholder="+234-800-123-4567"></label>
<br>
<label for="choice">status:
<select name="choice" id="choice">
<option value="option">what's your status</option>
<option value="option1">married</option>
<option value="option2">single</option>
<option value="option3">devorced</option>
</select>
</label>
<Label>
<input type="checkbox" name="gender-choice" value="female">
female
<input type="checkbox" name="gender-choice" value=" male">
male
</Label>
<br>
<label for="choice">nationality:
<select name="choice" id="choice">
<option value="option">select country</option>
<option value="option1">nigeria</option>
<option value="option2">eygpt</option>
<option value="option3">USA</option>
</select>
</label>
<label for="choice">state:
<select name="choice" id="choice">
<option value="option">select state</option>
<option value="option1">lagos</option>
<option value="option2">abuja</option>
<option value="option3">kaduna</option>
</select>
</Label>
<label for="choice">LGA:
<select name="choice" id="choice">
<option value="option">select LGA</option>
<option value="option1">jema'a</option>
<option value="option2">jaba</option>
<option value="option3">kaduna</option>
</select>
</Label>
<br>
<input type="radio" name="radio" value="I accept the terms amd condition">I accept the terms amd condition <hr>
<br>
<input type="submit" value="submit">
</fieldset>
</form>
</body>
</html>