-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1000, width=400, user-scalable=0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Fondamento&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quintessential&display=swap" rel="stylesheet">
<title>Trivia!!!</title>
</head>
<body>
<div class="overlay">
<div>
<audio class="fire">
<source src="background.mp3" type="audio/mp3">
</audio>
<audio class="audio">
<source src="startsound.mp3" type="audio/mp3">
</audio>
</div>
<h1 class="overlayText">Welcome to dark souls! </h1>
<h1 class="overlayText2">Prepare to die</h1>
<div class="welcome"><h3>The rules of the game are simple, a bit of information will display and you must click the picture that matches the discription. good luck!</h3><button class="welcomeButton">Okay</button></div>
<button class="overlayButton">Play</button>
</div>
<!-- <div class="head">Trivia!!!</div> -->
<div class="container">
<div class="questionBox">
<h3 class="question"></h3>
<h1 class="score"></h1>
</div>
<div class="wrongAnswer"><h3>Wrong answer try again</h3></div>
<div class="displayBox">
<div class="winMessage"><h1>congratulations you answered all questions correctly.</h1></div>
<button class="option"><img id="first" class="picture" data-number="0"></button>
<button class="option"><img id="second" class="picture" data-number="1"></button>
<button class="option"><img id="third" class="picture" data-number="2"></button>
<button class="option"><img id="fourth" class="picture" data-number="3"></button>
</div>
</div>
<script type="text/javascript" src='script.js'></script>
</body>
</html>