-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (78 loc) · 2.39 KB
/
index.html
File metadata and controls
90 lines (78 loc) · 2.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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>Java Script Dojo</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<div class="title">
<h1>
Javascript <span class="ninja">Ninja Quiz</span> Center
</h1>
</div>
<header>
<div class="scores">
<h3>
Highscores (Top 3 Ninjas)
</h3>
<ol>
<li class="highScores">Placeholder1</li>
<li class="highScores">Placeholder2</li>
<li class="highScores">Placeholder3</li>
</ul>
</div>
<div class="headerImage">
<img src="./assets/images/ninja_coder.png" />
</div>
<div class="scores">
<h3>
Time: <span id="time" class="time">__</span>
</h3>
<h3>
Score: <span id="score" class="time">__</span>
</h3>
</div>
</header>
<div id="start" class="wrapper">
<div>
<h1>Student <span class="ninjaBlock">Ninja</span> Challenge</h1>
</div>
<div>
<p>
Answer the following code-related questions <span class="ninjaBlock">within the time limit</span> to enter the dojo. Keep in mind that incorrect answers will chop your score!
</p>
</div>
<div>
<button id="startButton">Start Quiz</button>
</div>
</div>
<div id="questions" class="wrapper" hidden="true">
<div>
<h2 id="question-title">question-title</h2>
</div>
<div class="choiceList">
<ul>
<li class="choices">Choice1</li>
<li class="choices">Choice2</li>
<li class="choices">Choice3</li>
</ul>
</div>
<div>
<h2 id="question-answer" hidden="true">question-answer</h2>
</div>
</div>
<div id="end" class="wrapper" hidden="true">
<h2>Game Over</h2>
<h1><span id="endMessage" class="ninjaBlock">Ninja</span></h1>
<p>
Enter initials: <input type="text" id="initials" max="3" />
<button id="submit">Submit</button>
</p>
</div>
<script src="./assets/scripts/questions.js"></script>
<script src="./assets/scripts/logic.js"></script>
</body>
</html>