-
Notifications
You must be signed in to change notification settings - Fork 0
/
displayAnswers.html
41 lines (41 loc) · 1.41 KB
/
displayAnswers.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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
<script defer src="./main.js"></script>
<title>CounterReply|Answer Display</title>
</head>
<body
onload="loadAnswers()"
class="container text-center position-absolute top-50 start-50 translate-middle"
>
<div class="currentTitle">
<h1>Here are the answers to:</h1>
<div class="currentQuestion">
<h2 id="askQuestion">Whoops! Something went wrong!</h2>
</div>
</div>
<div class="input1">
<h3 id="answer1">Whoops! Something went wrong!</h3>
</div>
<div class="input2">
<h3 id="answer2">Whoops! Something went wrong!</h3>
</div>
<button type="button" class="btn btn-primary" onclick="counterRedirect()">
Next
</button>
</body>
</html>