-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.01 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.01 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
<!doctype html>
<html>
<head>
<title>Legend of Zelda Trivia</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>Legend of Zelda Trivia</header>
<div id="test">
<div id="qhead">
<h1 id="qnum"></h1>
<p id="timer"></p>
<h2 id="question"></h2>
</div>
<div class="answers">
<p class="answer" id="A"></p>
<p class="answer" id="B"></p>
<p class="answer" id="C"></p>
<p class="answer" id="D"></p>
</div>
<div class="results">
<div>Correct Answers: <span id="correct"></span></div>
<div>Incorrect Answers: <span id="incorrect"></span></div>
</div>
<button id="start">Start</button>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="assets/javascript/app.js"></script>
</body>
</html>