-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
54 lines (54 loc) · 1.61 KB
/
table.html
File metadata and controls
54 lines (54 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Courses and Schools</title>
<link rel="stylesheet" href="/assets/index.css">
</head>
<body class="table-flex">
<header >
<nav><a id="back-nav" href="/form.html">⇦</a></nav>
<h1 class="table-h1">Table</h1></header>
<main >
<table>
<caption>
The table below shows the schools and the courses that is been offered
at AltSchool Africa:
</caption>
<thead>
<tr>
<th>Schools</th>
<th colspan="4">Courses</th>
</tr>
</thead>
<tbody>
<tr>
<th>School of Engineering</th>
<td>Frontend Enginnering</td>
<td>Backend Engineering</td>
<td>Cloud Engineering</td>
<td>Cybersecurity</td>
</tr>
<tr>
<th>School of Product</td>
<td>Product Design</td>
<td>Marketing</td>
<td colspan="2">Management</td>
</tr>
<tr>
<th>School of Data</th>
<td>Data Analysis</td>
<td>Science</td>
<td colspan="2">Engineering</td>
</tr>
</tbody>
</table>
<aside><p> © 2024 AltSchool Africa.</p></aside>
</main>
<footer >
<p class="table-p">Click <a href="/media.html">here</a> to see the media elements</p>
<button><a href="../">Home</a></button>
</footer>
</body>
</html>