-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javscript Quiz</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<main>
<div class="featuresContainer">
<div class="timer">
<h2>Timer: </h2><span class="countDown"> <h2> 60</h2></span>
</div>
</div>
</div>
<section class="quiz">
<h1>Javascript Quiz</h1>
<div class="quizBox">
<h2 id="question"> Question Here</h2>
<button class="primaryBtn" id="start">Start the quiz!</button>
<button id="one" class="answerBtn">Answer 1</button>
<button id="two" class="answerBtn">Answer 2</button>
<button id="three" class="answerBtn">Answer 3</button>
<button id="four" class="answerBtn">Answer 4</button>
<div class="correctIncorrect"><h2>correctIncorrect</h2></div>
</div>
<div class="submitContainer">
<form id="form">
<label>Enter User Name</label>
<input type="text" id="user-name"/>
<button class="submit" id="save-user">Save User</button>
</form>
<section class="highScoresPage">
<ul id="list">
</ul>
</section>
<button class="startOver"><a href="./index.html">Try Again!</a></button>
</div>
</section>
</section>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>