-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.bak
74 lines (48 loc) · 1.87 KB
/
index.html.bak
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Seal of Gideon Ofnir</title>
<script src="quizproject.js"></script>
<link rel="stylesheet" type="text/css" href="quizproject.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="quizimages/favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Aclonica' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Akronim' rel='stylesheet'>
<!-- <link rel="manifest" href="manifest.json"> -->
</head>
<body onload="setTimeout(timer, 3000);">
<div id="endscreen">
<div id="restart">The seal remains... but was it pointless...? You may try as many times as you like but be aware there may be no change.</div>
</div>
<div id="startbox">
<div id="startbutton" onclick="loadQuestion()">Attempt to break Seal</div>
</div>
<div id="lightbox" onclick="closeLightBox()">
<div id="message">This is the message</div>
</div>
<h1>Elden Ring: Gideon Ofnir's Seal</h1>
<div class="grid-container">
<div class="header">
<div id="question">The Question</div>
</div>
<div class="left">
<div>
<div class="options" id="a" onclick="markIt('a')">A.</div>
<div class="options" id="b" onclick="markIt('b')">B.</div>
<div class="options" id="c" onclick="markIt('c')">C.</div>
<div class="options" id="d" onclick="markIt('d')">D.</div>
</div>
</div>
<div class="right"> <img id="image" src="" alt=""></div>
<div class="footer1">
<img id="gif1" src="quizimages/dance.gif" alt="dancing plague doctor gif">
<button id="hintbutton">Hint</button><p id="hint">Press 'Hint' for a Hint!</p>
</div>
</div>
<div class="footer2">
<p>Score: <span id="score"></span></p>
</div>
</div>
</body>
</html>