-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.html
52 lines (52 loc) · 1 KB
/
aboutus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>this is aboutus page</title>
</head>
<body>
<h1>about cohort 4.1 students</h1>
<table>
<tr>
<th>lists</th>
<th>surname</th>
<th>name</th>
<th>complexion</th>
</tr>
<tr>
<td>1</td>
<td>Mustapha</td>
<td>Ekundayo</td>
<td>dark</td>
</tr>
<tr>
<td>2</td>
<td>Justin</td>
<td>Okorochukwu</td>
<td>fair</td>
</tr>
<tr>
<td>3</td>
<td>SA</td>
<td>Yemmie</td>
<td>dark</td>
</tr>
<tr>
<td>4</td>
<td>BSD</td>
<td>Mayor</td>
<td>dark</td>
</tr>
<tr>
<td>5</td>
<td>Ismail</td>
<td>Mubarak</td>
<td>dark</td>
</tr>
</table>
<div>
<a href="./">Go back</a>
</div>
</body>
</html>