-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathresults.html
76 lines (72 loc) · 2.63 KB
/
results.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Yo'self</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500&display=swap" rel="stylesheet">
<link rel="icon" href="images/q.png">
<link rel="stylesheet" href="css/index.css">
</head>
<body class="body-results">
<main class='result-main'>
<header class="result-header">
<p>
<img src="images/quizyo-1.png" class="results-logo">
</p>
<h1 class="result-header">Results</h1>
</header>
<section id="resultsDisplay" class="results-display">
<h2 class="result-header" id="result">
Result
</h2>
<p id="funny">
funny phrase regarding the results
</p>
<p>
<a id="playAgain" class="play-again" href="selection.html">Play again?</a>
</p>
<div class="more-results" id="moreResults">
Details
</div>
<div class="full-results">
<table id="fullResults" class='results-table'>
<thead>
<th>Question</th>
<th>Your Answer</th>
<th>Correct Answer</th>
</thead>
<tbody id='tableBody'>
</tbody>
</table>
</div>
</section>
<div class="footer" id='footer'>
<ul class="links">
<li><a class="active" href="index.html">Home</a></li>
<li><a class="active" href="creators.html">Our Team</a></li>
<li><a class="active" href="https://github.com/KatySage/Trivia">On Github</a></li>
</ul>
<section class="copyright">
<p>© Yogurt Board</p>
</section>
</div>
</main>
<!-- <audio id="music">
<source src="sfx/main-Oman.mp3" type="audio/mp3">
</audio> -->
<audio id="click">
<source src="sfx/click.ogg" type="audio/mp3">
</audio>
<audio id="applause">
<source src="sfx/applause.mp3" type="audio/mp3">
</audio>
<audio id="boos">
<source src="sfx/crowdboo.mp3" type="audio/mp3">
</audio>
</body>
<script src="js/confetti.js"></script>
<script>confetti.start()</script>
<script src="js/results.js"></script>
</html>