-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
81 lines (71 loc) · 3.06 KB
/
forms.html
File metadata and controls
81 lines (71 loc) · 3.06 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Free web contents">
<!--<meta http-equiv="refresh" content="15">-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="forms.css">
<title>Forms</title>
</head>
<body>
<div class="filling_forms">
<form action="hotel.html">
<h1>WELCOME TO FLEMING TECHNICAL INSTITUTE</h1>
<h2>Apply to this institution</h2>
<label for="lname">Last Name</label> <br>
<!--Last Name <br>-->
<input type="text" name="lname" id="lname" placeholder=" Lorem"> <br>
Other Names <br>
<input type="text" name="oname" id="onames" placeholder="John Doe"> <br>
Date Of Birth <br>
<input type="date" name="dbirth" id="dbirth" placeholder="Enter your Date of Birth"> <br>
National ID Number/Birth Certificate Number <br>
<input type="number" name="idnumber" id="idnumber" placeholder="12345645"><br>
K.C.S.E Grade <br>
<input type="text" name="grade" id="grade" placeholder="Enter your K.C.S.E Grade"> <br>
<!--Creating a radio -->
<label for="lstudies">Select Your Level of Studies</label> <br>
<input type="radio" name="study_level" id="certificate" value="Certificate">
Certificate <br>
<input type="radio" name="study_level" id="diploma" value="Certificate">
Diploma <br>
<input type="radio" name="study_level" id="degree" value="Degree">
Degree <br>
<input type="radio" name="study_level" id="masters" value="Masters">
Masters<br>
<input type="radio" name="study_level" id="phd" value="PHD">
PHD<br>
<!--Creating a checkbox -->
<label for="study_field">Select a field of study</label> <br>
<input type="checkbox" name="computing" id="computing" value="School of Computing">
School of Computing <br>
<ul style="list-style-type: none;">
<a href="hotel.html"><li>Web development</li></a>
<a href="restaurant.html"><li>Graphics and Designs</li></a>
</ul>
<input type="checkbox" name="hospitality" id="hospitality" value="School of Hospitality">
School of Hospitality <br>
<ul style="list-style-type: none;">
<a href="hotel.html"><li>Web development</li></a>
<a href="restaurant.html"><li>Graphics and Designs</li></a>
</ul>
<input type="checkbox" name="law" id="law" value="School of Law">
School of Law<br>
<ul style="list-style-type: none;">
<a href="hotel.html"><li>Web development</li></a>
<a href="restaurant.html"><li>Graphics and Designs</li></a>
</ul>
<input type="checkbox" name="medicine" id="medicine" value="School of Medicine">
School of Medicine <br>
<ul style="list-style-type: none;">
<a href="hotel.html"><li>Web development</li></a>
<a href="restaurant.html"><li>Graphics and Designs</li></a>
</ul>
Submit
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>