JS Lab 3 progress
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user