-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomize.html
More file actions
38 lines (33 loc) · 1.02 KB
/
Copy pathcustomize.html
File metadata and controls
38 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ghost Hunter</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/customize.css">
<link rel="icon" href="images/Ghost/2/G2.png" type="image/x-icon">
</head>
<body>
<nav>
<h1>Customize Game</h1>
<div>
<button onclick="window.location.href='game.html'; sessionStorage.setItem('playButtonSound', 'true');">← Back to Game</button>
<button id="muteBtn">
<img id="muteIcon" src="images/speaker-mute.svg" alt="Speaker Icon">
</button>
</div>
</nav>
<main>
<div class="section">
<h2>CHOOSE BACKGROUND</h2>
<div class="option-grid" id="bgOptions"></div>
</div>
<div class="section">
<h2>CHOOSE GHOST SKIN</h2>
<div class="option-grid" id="ghostOptions"></div>
</div>
<button onclick="saveSelection()">Save and Start</button>
</main>
<script src="js/customize.js"></script>
</body>
</html>