-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
60 lines (58 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GoT Death Quiz</title>
<meta name="description" content="Do you know who died before who in Game Of Thrones?">
<meta name="author" content="Aditya Agarwal">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<audio id="game-music" src="assets/Backgroundmusic.mp3" loop volume="0.1"></audio>
<section class="game-wrapper">
<header class="game-header">
<h1>Game of Thrones Death Quiz</h1>
</header>
<main class="game-container">
<section class="quiz-container">
<h2 class="quiz-question js-quiz-question">
Who died <span class="js-death-time"></span> <span class="death-character js-death-character"></span><span class="quiz-static-questionmark">?</span>
</h2>
<ul class="quiz-options-list js-options-list">
<li class="quiz-option-item">
<button class="quiz-option-button js-option">
</button>
</li>
<li class="quiz-option-item">
<button class="quiz-option-button js-option">
</button>
</li>
</ul>
<div class="game-over is-hidden js-game-over">
<h2>GAME OVER!</h2>
<button class="js-game-restart button-bg-fill">Play Again</button>
</div>
<div class="tweet-block js-tweet-block is-hidden">
<a class="js-tweet" target="blank" rel="noopener noreferrer"><img class="tweet-icon" src="/assets/tweet.png" alt="Share Page on Twitter" /></a>
</div>
</section>
<section class="game-score">
<div class="high-score-container">
<div class="high-score-streak js-high-streak">0</div>
<div class="high-score-static-text">Last Highest Streak</div>
</div>
<div class="score-container">
<div class="score-streak js-streak">0</div>
<div class="score-static-text">Death Streak</div>
</div>
</section>
</main>
<footer class="game-footer">
<p>Made for Hacktoberfest by these <strong><a href="https://github.com/itaditya/got-death-quiz#contributors" target="_blank">awesome people.</a></strong></p>
</footer>
</section>
<script src="script.js"></script>
</body>
</html>