-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlegacy.html
46 lines (43 loc) · 1.32 KB
/
legacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Legacy</title>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function(){
$("#navbar").load("navbar.html");
$("#footer").load("footer.html");
});
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<!-- Navbar -->
<div id="navbar"></div>
<h1>Legacy</h1>
<p>Work done by earlier semesters that is still relevant but is not one of our current lines of effort.</p>
<div class="table">
<table class="table table-striped">
<thead>
</thead>
<tbody>
<tr>
<th scope="row">Department</th>
<th scope="row">Role Description</th>
</tr>
<tr>
<th scope="row"><a href="rf.html" class="text-dark">Radio Frequency Team</a></th>
<td>Establish and maintain RF communication between buildings</td>
</tr>
</tbody>
</table>
</div>
<!-- Footer -->
<div id="footer"></div>
</body>
</html>