-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 2.42 KB
/
index.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JavaScript Quiz</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div id="quiz-container">
<!-- Quiz Container -->
<h1>JavaScript Quiz</h1>
<!-- Quiz Title -->
<div id="score-display">Score:
<span id="score">0</span>
</div>
<!-- Score Display -->
<button id="start-btn">Start Quiz</button>
<!-- Start Quiz Button -->
<div id="question-container" class="hide">
<!-- Question Container -->
<div id="question"></div>
<!-- Question -->
<div id="answer-buttons" class="btn-grid"></div>
<!-- Answer Buttons -->
</div>
<div id="timer-display" class="hide">Time Remaining:
<span id="timer"></span> seconds
</div>
<!-- Timer Display -->
<button id="restart-btn" class="hide">Restart Quiz</button>
<!-- Restart Quiz Button -->
<button id="end-quiz-btn" class="hide">End Quiz</button>
<!-- End Quiz Button -->
<button id="show-high-scores-btn" class="hide">Show High
Scores</button>
<!-- Show High Scores Button -->
<button id="clear-high-scores-btn" class="hide">Clear High
Scores</button>
<!-- Clear High Scores Button -->
<div id="high-scores-container" class="hide">
<!-- High Scores Container -->
<h2>High Scores</h2>
<!-- High Scores Title -->
<ul id="high-score-list"></ul>
<!-- High Scores List -->
<form id="form">
<!-- Form for inputting initials -->
<input type="text" id="input" placeholder="Enter Initials"
aria-label="Enter Initials">
<!-- Input for initials -->
<button type="submit">Submit</button>
<!-- Submit Button -->
</form>
</div>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>