Files
IWD2-02/INFO-3168 (JS 2)/Labs/Lab 3/index.html
T
2026-03-06 21:27:16 -05:00

35 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Levi McLean JS Lab 3</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Student Performance Analytics Dashboard</h1>
<input type="text" placeholder="Search By Name" id="nameSearch">
<label for="minimumGrade">Minimum Grade: <span id="gradeValue">50</span></label>
<input type="range" min="0" max="100" value="50" name="minimumGrade" id="minimumGrade">
<button type="button" id="themeToggle">Toggle Theme</button>
<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>
<div id="summary">
<h2>Summary</h2>
</div>
<script type="module" src="main.js"></script>
</body>
</html>