-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
46 lines (43 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Birthday!</title>
<link rel="stylesheet" href="styles.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=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
</head>
<body>
<div id="menu">
<button id="sound" class="on"></button>
</div>
<div id="game-container">
<div id="backdrop" class="hidden"></div>
<div id="book" class="hidden">
<div class="page-container">
<button id="left-arrow" class="arrow-btn"></button>
<img id="page-pic" src="" alt="photo">
<p id="page-text"></p>
<button id="right-arrow" class="arrow-btn"></button>
</div>
</div>
<div class="player"></div>
<div id="game-row-1" class="game-row"></div>
<div id="game-row-2" class="game-row"></div>
<div id="game-row-3" class="game-row"></div>
<div id="game-row-4" class="game-row"></div>
<div id="game-row-5" class="game-row"></div>
<div id="game-row-6" class="game-row"></div>
<div id="game-row-7" class="game-row"></div>
<div id="game-row-8" class="game-row"></div>
<div id="dialogue" class="dialogue top-row">
<p id="textbox"></p>
</div>
<script src="texts.js" type="module"></script>
<script src="objects.js" type="module"></script>
<script src="map.js" type="module"></script>
<script src="script.js" type="module"></script>
</body>
</html>