-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
71 lines (71 loc) · 2.01 KB
/
results.html
File metadata and controls
71 lines (71 loc) · 2.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gecomtech</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/CpeDev.png" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/help.css" />
</head>
<body class="body-results">
<main class="result-main">
<header class="result-header">
<p>
<img src="images/title.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">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" style="margin-bottom: 50px" id="footer">
<ul class="links">
<li><a class="active" href="index.html">Home</a></li>
</ul>
</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>