-
Notifications
You must be signed in to change notification settings - Fork 0
/
kazi-live.html
89 lines (74 loc) · 2.08 KB
/
kazi-live.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kazi App</title>
<meta name="author" content="William Maina - IBConcept">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<li><a href="kazihome.html">Home</a></li>
<p>show latest jobs and still available jobs</p>
<title>Job Listings</title>
<style>
/* Apply some basic styling */
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
/* Add rounded corners to the table */
table {
border-radius: 10px;
overflow: hidden;
}
th,
td {
border-radius: 10px;
}
</style>
</head>
<body>
<h1>Job Listings</h1>
<!-- Your input form can go here to add data to the table -->
<table>
<thead>
<tr>
<th>Location</th>
<th>Job Type</th>
<th>Date</th>
<th>Requirements</th>
<th>Pay</th>
<th>Contact Employer</th>
</tr>
</thead>
<tbody>
-- Rows of job listings will be dynamically added here >
!-- Example row:
<tr>
<td>Nairobi</td>
<td>casual / contractual </td>
<td>2023-10-05 from 10 pm weekdays</td>
<td>Kind and on time</td>
<td>KES 700/day</td>
<td><a href="mailto:employer@example.com">SMS Employer</a></td>
</tr>
>
</tbody>
</table>
</body>
</html>