Files
IWD2-02/INFO-3168 (JS 2)/Labs/Lab 3/index.html
T
2026-02-24 17:13:31 -05:00

31 lines
961 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Levi McLean JS Lab 3</title>
<meta charset="utf-8">
</head>
<body>
<h1>JS Lab 3</h1>
<table id="studentTable">
<thead>
<tr>
<th>Name</th>
<th>Course</th>
<th>Grade</th>
<th>Attendance</th>
<th>Assignment Avg</th>
<th>Status</th>
<th>City</th>
</tr>
</thead>
<tbody id="studentTableBody"></tbody>
</table>
<script type="module" src="main.js"></script>
<script type="module" src="data.js"></script>
<script type="module" src="analytics.js"></script>
<script type="module" src="utils.js"></script>
<script type="module" src="ui.js"></script>
<script type="module" src="theme.js"></script>
</body>
</html>