-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
54 lines (52 loc) · 1.92 KB
/
form.html
File metadata and controls
54 lines (52 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Safari Registration</title>
</head>
<body>
<b><big><p>Welcome to safari travellers</p></big></b>
<form action="">
<label>First name: </label>
<input type="text" placeholder="First name" id="1" required>
<label>Age: </label>
<select name="" id="88" required>
<option value="">Choose your age</option>
<option value="Under 18">Under 18</option>
<option value="18-30">18-30</option>
<option value="Above 30">Above 30</option>
</select>
<br><br>
<label>Last name: </label>
<input type="text" placeholder="Surname" id="2" required><br><br>
<label>Phone number: </label>
<input type="number" placeholder="Enter number" id="3" required><br><br>
<label>Location: </label>
<input type="text" placeholder="Your location" id="4" required><br><br>
<label>Destination: </label>
<input type="text" placeholder="Desired destination" required><br><br>
<label>Gender: </label> <select name="" id="66">
<option value="Male">Male</option>
<option value="Female">Female</option>
</select><br><br>
</select>
<label>Choose color: </label> <select name="G" id="6" required>
<option value="">Choose your color</option>
<option value="">Green</option>
<option value="">blue</option>
<option value="">white</option>
</select><br><br>
<label>Your country</label> <select name="" id="" required>
<option value="">Choose your country</option>
<option value="Kenya">Kenya</option>
<option value="Egypt">Egypt</option>
<option value="Uganda">Uganda</option>
<option value="Tanzania">Tanzania</option>
<option value="Uganda">Uganda</option>
</select><br><br>
<label>Male</label><input value="Male" type="radio" name="p">
<label>Female</label><input value="Female" type="radio" name="p">
<input type="submit" value="Send">
</form>
</body>
</html>