-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
40 lines (40 loc) · 1.88 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The NBA Defense Quiz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="intro">
<h1>The NBA Defense Quiz</h1>
<p>A quiz created by <a href="http://www.twitter.com/stephnoh" target="_blank">Stephen Noh.</a></p>
<p>INSTRUCTIONS: The main focus of this quiz is on help rotations. For that purpose, ignore poor point of attack defense and focus on where a rotation could have been better. There may be multiple defensive mistakes on a play. Select the MOST IMPACTFUL mistake.</p>
<p>Click the start button and test how much you really know about NBA defense.</p>
<br>
</div>
<div id="question-container" class="hide">
<div id="question">Question</div>
<div id="video">Video</div>
<div id="answer-buttons" class="btn-grid">
<button class="btn">Answer 1</button>
<button class="btn">Answer 2</button>
<button class="btn">Answer 3</button>
<button class="btn">Answer 4</button>
</div>
</div>
<div class="scoreboard">
<div id="missed-concepts-id" class="hide">Concept tested: <span id="missed-concepts"></span></div>
<div id="final-score" class="hide">Final Score:</div>
</div>
<div class="controls">
<button id="start-btn" class="start-btn btn">Start</button>
<button id="next-btn" class="next-btn btn hide">Next</button>
<button id="other-btn" class="other-btn btn hide" onclick="window.location.href='https://stephennoh.github.io/codingportfolio/';">See more quizzes/projects</button>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>