-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
43 lines (38 loc) · 1.29 KB
/
index2.html
File metadata and controls
43 lines (38 loc) · 1.29 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
<!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" />
<link rel="stylesheet" type="text/css" href="Assets/css/style.css"/>
<title>Coding Quiz</title>
</head>
<body class="linear-gradient-background">
<!--created a wrapper to for quiz content-->
<div class="wrapper-color" id="wrapper">
<div>
<div id="timeInterval"></div>
<header>
<br>
<h1>Coding Quiz Challenge</h1>
<br>
</header>
</div>
<!--Div will contain quiz questions-->
<div id="quizQuestions">
<h2>HIGHSCORES</h2>
<br>
<br>
<!--user prompted to select quiz choices-->
<ul id="highScores"></ul>
<br>
<!--button will return to quiz page-->
<a href="index.html" id="backBtn" class="back-btn"><button>Back to Quiz</button></a>
<!--button to clear highscore -->
<button id="clearScore" class="clear-btn" value="reset">Clear Highscore</button>
<br>
</div>
</div>
<script src="Assets/js/script2.js"></script>
</body>
</html>