-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (40 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<title>Quiz-Questions</title>
</head>
<body>
<div class="container" id="content" >
<div style="text-align: center;margin: 20px;">
<div id="cardtop" class="card" style="width: 18rem;margin-bottom: 25px; ">
<div style= "text-align: center; margin-bottom: 25px; padding: 10px; border: none; color: red; background-color: lightblue;border-radius:15px" class="High Scores">
Highest Score
</div>
<button style="text-align: center; margin-bottom: 25px; padding: 10px; border: none; color: red; background-color: lightblue;border-radius:15px" class="High Scores btn btn-info" onclick="clearlist() " >Clear </button>
<ul id="list" class="list-group list-group-flush">
</ul>
</div>
<div>
<button id="start" class="btn btn-primary" onclick="startQuiz()">Start Quiz</button>
</div>
</div>
<div id='quizPage' class="card" style="display: none;min-height: 500px;min-width: 100%; text-align: center; ">
<div class="alert alert-light" id="timerContent">
Timer: <h3 id='countdown'></h3>
</div>
<form id="questionBox" class="card-body" style="text-align: center;">
</form>
<div id='answerResponse' class="card-footer alert-secondary">
Please select an answer
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>