-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform magda 4444.html
38 lines (36 loc) · 1.51 KB
/
form magda 4444.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
My new form
</title>
</head>
<body align="center">
<h1>My form</h1>
<form align="center">
<label>First name:</label>
<input type="text" id="fname" name="fname" required><br><br>
<label>last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<label>Sex:</label>
<label>male</label>
<input type="radio" id="male" name="sex" required>
<label>female</label>
<input type="radio" id="female" name="sex" ><br><br>
<label>Nationality</label>
<select name="Nationality" id="nationality" ><br><br>
<option>tanzania</option>
<option>Kenya</option>
<option>Uganda</option>
<option>Rwanda</option>
</select><br>
<h5><label>Means of idenitification</label></h5>
<input type="checkbox" id="Nid" name="National id" value="nationalID"> NationalID<br><br>
<input type="checkbox" id="dlicense" name="dlicense" value="Driving license">Driving License<br><br>
<input type="checkbox" id="bcertificate" name="bcertificate" value="Birth Certificate"> Birth Certificate<br><br>
<input type="submit" id="sbutton" name="sbutton"><br><br>
<input type="reset" id="rbutton" name="rbutton">
</form>
</body>
</html>