JS Lab 3 progress

This commit is contained in:
2026-02-24 18:02:01 -05:00
parent f186c94048
commit a7b70a2a55
6 changed files with 58 additions and 12 deletions
+10 -1
View File
@@ -3,10 +3,16 @@
<head>
<title>Levi McLean JS Lab 3</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>JS Lab 3</h1>
<h1>Student Performance Analytics Dashboard</h1>
<input type="text" placeholder="Search By Name" id="nameSearch">
<label for="minimumGrade">Minimum Grade:</label>
<input type="range" min="0" max="100" name="minimumGrade" id="minimumGrade">
<button type="button">Toggle Theme</button>
<table id="studentTable">
<thead>
<tr>
@@ -21,6 +27,9 @@
</thead>
<tbody id="studentTableBody"></tbody>
</table>
<div id="summary">
<h2>Summary</h2>
</div>
<script type="module" src="main.js"></script>
<script type="module" src="data.js"></script>
<script type="module" src="analytics.js"></script>