-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vacancies.html
102 lines (93 loc) · 4.67 KB
/
Vacancies.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
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>CHINESE PLACE RESTAURANT</title>
</head>
<body>
<section id="Top_frame">
<img src="images/top.jpg" alt="Top png">
</section>
<section id="bottom_frame">
<div id="left_frame">
<nav>
<a href="index.html"><h3>Home</h3></a>
<a href="Menu.html"><h3>Menu</h3></a>
<a href="Contact_Us.html"><h3>Contact Us</h3></a>
<a href="Vacancies.html"><h3>Vacancies</h3></a>
</nav>
</div>
<div id="right_frame">
<h2>Application for Employment</h2><br><br>
<div class="form_box">
<h3 style="text-align: left ; font-size: 20px;"> Personal Details</h3><br><br>
<div class="form_lable">
<lable for="surname">Surname :</lable><br><br>
<lable for="fn">Forename :</lable><br><br>
<lable for="tit">Title :</lable><br><br>
<lable for="add">Address :</lable><br><br><br><br><br>
<lable for="email">Email :</lable><br><br>
<lable for="nic">NIC :</lable><br><br>
<lable for="dob">Date of birth :</lable><br><br>
<lable for="da">Dates Available :</lable><br><br>
<lable for="nat">Nationality :</lable><br><br>
</div>
<div class="form_in">
<input type="text" name="surname" id="sn"><br><br>
<input type="text" name="fn" id="fn"><br><br>
<input type="text" name="tit" id="tit"><br><br>
<textarea id="title" rows="4" cols="30"></textarea><br><br>
<input type="text" name="email" id="email"><br><br>
<input type="number" name="nic" id="nic"><br><br>
<input type="date" name="dob" id="dob"><br><br>
<input type="checkbox" id="v" value="Monday">Monday
<input type="checkbox" id="v" value="tuesday">Tuesday
<input type="checkbox" id="v" value="wed">Wednesday
<input type="checkbox" id="v" value="thu">Thursday
<input type="checkbox" id="v" value="fri">Friday
<input type="checkbox" id="v" value="sat">Saturday
<input type="checkbox" id="v" value="sat">Sunday
<br><br>
<input type="text" name="nat" id="nat"><br><br>
</div>
</div>
<div class="form_box">
<h3 style="text-align: left ; font-size: 20px;"> Education</h3><br><br>
<div class="form_lable">
<lable for="scl">School/College :</lable><br><br>
<lable for="qual">Qualification :</lable><br><br>
<lable for="time">Time Period :</lable><br><br>
</div>
<div class="form_in">
<input type="text" name="scl" id="scl"><br><br>
<input type="text" name="qual" id="qual"><br><br>
<input type="text" name="time" id="time"><br><br>
</div>
</div>
<div class="form_box">
<h3 style="text-align: left ; font-size: 20px;"> Declaration</h3><br><br>
<p>I confirm you that the above informatio is complete
and correct. False or misleading information will Give
the employer there right to reject my application or
to withraw any employment contract offered or employed, dismiss without notice.
</p><br><br>
<lable for="name">Name :</lable>
<input type="text" name="name">
<lable for="date">Date :</lable>
<input type="date" name="date">
</div>
<div class="form_box">
<h3 style="text-align: left ; font-size: 20px;"> Attachements</h3><br><br>
<input type="file" id="myfile" name="myfile">
<button class="btn">Submit</button>
</div>
</div>
<div id="footer_frame">
<hr color="brown">
<p>Copyrights (c) 2022 Chinese Place, Sri Lanka | All rights recived 2022</p>
</div>
</section>
</body>