-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
104 lines (99 loc) · 1.98 KB
/
gallery.html
File metadata and controls
104 lines (99 loc) · 1.98 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GALLERY</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray;
}
table{
width: 100%;
background-color: black;
color:gray;
border-collapse: collapse;
}
th,td{
border: 1px solid gray;
padding: 10px;
text-align: center;
}
th{
color: white;
font-size: 20px;
border: 1px solid gray;
text-decoration: underline;
font-weight: bold;
background-color:greenyellow;
}
td{
font-weight: bold;
font-size: 18px;
}
h2{
text-decoration: underline;
font-weight: bold;
font-size: 35px;
font-style: italic;
}
</style>
</head>
<body>
<h2>UNIVERSITY PLACEMENTS</h2>
<table>
<tr>
<th>
NAME
</th>
<th>
DEGREE
</th>
<th>
UNIVERSITY
</th>
<th>
LOCATION
</th>
<th>
GENDER
</th>
</tr>
<tr>
<td>Okeyo Kitam</td>
<td>MEDICINE</td>
<td>KU</td>
<td>NAIROBI</td>
<td>MALE</td>
</tr>
<tr>
<td>Joshua Okoyo</td>
<td>MEDICINE</td>
<td>UON</td>
<td>NAIROBI</td>
<td>MALE</td>
</tr>
<tr>
<td>Joanne Faith</td>
<td>ENGINEERING</td>
<td>JKUAT</td>
<td>KENYA</td>
<td>FEMALE</td>
</tr>
<tr>
<td>Paul Otieno</td>
<td>ENGINEERING</td>
<td>JKUAT</td>
<td>KENYA</td>
<td>MALE</td>
</tr>
<tr>
<td>Gray Hawi</td>
<td>ENGINEERING</td>
<td>TUK</td>
<td>NAIROBI</td>
<td>MALE</td>
</tr>
</table>
</body>
</html>