-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.31 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
<!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://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<title>Tandem Quiz</title>
</head>
<body>
<div class="container">
<!--Question LIST / WINDOW-->
<div class="question-window">
<ul class="question-list list-group"></ul>
</div>
<!--NEW QUESTION FORM-->
<form class="new-question my-3">
<p class="d-none">Please select one:</p>
<div class="choices"></div>
</form>
<div class="input-group-append">
<input type="submit" class="btn submit-ans d-none" value="submit" />
</div>
<div>
<button class="btn start">Start Tandem Quiz</button>
</div>
<div class="final-score d-none h1">You Scored:</div>
<div class="corr-ans d-none h4">Correct Answer:</div>
<div><button class="btn play-again d-none">Play Again</button></div>
</div>
<script src="/Quiz.js"></script>
<script src="/app.js"></script>
</body>
</html>