34 lines
884 B
HTML
34 lines
884 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Average Test Scores - Array</title>
|
|
<link rel="stylesheet" href="test_scores.css">
|
|
</head>
|
|
<body>
|
|
<h1>My Test Scores</h1>
|
|
<div>
|
|
<label>All scores:</label>
|
|
<label id="all"></label>
|
|
</div>
|
|
<div>
|
|
<label>Letter grades:</label>
|
|
<label id="grades"></label>
|
|
</div>
|
|
<div>
|
|
<label>Average score:</label>
|
|
<label id="avg"></label>
|
|
</div>
|
|
<div>
|
|
<label>Highest to lowest:</label>
|
|
<label id="sort"></label>
|
|
</div>
|
|
<div>
|
|
<label for="score">Enter new score:</label>
|
|
<input type="text" id="score">
|
|
<button id="add_score">Add Score</button><span></span>
|
|
</div>
|
|
|
|
<script src="test_scores.js"></script>
|
|
</body>
|
|
</html> |