-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscore.html
More file actions
39 lines (39 loc) · 1.46 KB
/
score.html
File metadata and controls
39 lines (39 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Test your JavaScript mettle!</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<h1>The JavaScript Gauntlet</h1>
</header>
<main>
<h2>Quiz over!</h2>
<div class="scroll-pane">
<div id="score-table">
<div id="score-table-caption">Past Challenges</div>
<div id="score-table-header">
<div class="score-table-header-cell">Initials</div>
<div class="score-table-header-cell">Score</div>
</div>
<div id="score-table-body"></div>
</div>
</div>
<section class="center-content">
<h3>Immortalize Yourself</h3>
<form id="submit-score-form">
<label for="initials">Initials</label>
<input id="initials-input" name="initials" required size="5">
<input type="submit">
</form>
<button id="clear-scores" class="clickable">Clear scores</button>
</section>
<div id="try-again-wrapper">
<a id="try-again-link" class="clickable" href="index.html">Try again?</a>
</div>
</main>
<script src="assets/js/score.js"></script>
</body>
</html>