-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Glegoo&display=swap" rel="stylesheet">
<script src="./js/app.js" type="module"></script>
<script src="./data/confetti.js"></script>
<title>Hunt Your Own National Treasure</title>
<link
id="favicon"
rel="icon"
href="./assets/eye_favi.gif"
type="image/gif"
sizes="32x32">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<h1>Hunt Your Own National Treasure</h1>
<nav>
<button id="restart">Restart</button>
</nav>
<div id="story-container">
<div id="img-prompt-container">
<div><img src="" id="image"></div>
<div id="prompt"></div>
</div>
<div id="option-container">
<button class = "option button" id="opt-btn-1"></button>
<button class = "option button" id="opt-btn-2"></button>
</div>
</div>
</body>
</html>