-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmachinelearning.html
70 lines (63 loc) · 1.61 KB
/
machinelearning.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Machine Learning</title>
<script src="https://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>
<!-- Title -->
<div>
<h1>Machine Learning (ML) Curricula</h1>
</div>
<!-- Team Positions -->
<div class="table table-responsive">
<table class="table table-sm table-striped table-bordered">
<thead>
<tr>
<th scope="row">Name</th>
<th>Position</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Lead</td>
</tr>
<tr>
<td>Chase</td>
<td>Assistant</td>
</tr>
<tr>
<td>Edward</td>
<td>Assistant</td>
</tr>
</tbody>
</table>
</div>
<hr class="bg border-1 border-top border-dark">
<!-- Current Tasks -->
<h2>Current Tasks</h2>
<p>
None as of 9/8 <br>
John needs to get his act together and start working on this...<br>
<br>
<a href="DepartmentPages/MachineLearning/zero-trust.html">Zero Trust</a>
</p>
<!-- Footer -->
<div id="footer"></div>
</body>
</html>