-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
53 lines (47 loc) · 2.64 KB
/
Copy pathmap.html
File metadata and controls
53 lines (47 loc) · 2.64 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>GHOST HUNTERS: HAUNTED MAP</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet">
</head>
<body>
<!-- Side banners -->
<img src="https://cdn.glitch.global/dacc699f-e499-49cc-a99e-62079fdfadf6/ghg.png?v=1747641326390" alt="Left Banner" class="side-banner left-banner">
<img src="https://cdn.glitch.global/dacc699f-e499-49cc-a99e-62079fdfadf6/ghg.png?v=1747641326390" alt="Right Banner" class="side-banner right-banner">
<!-- Top Header -->
<div class="top">
<img id="ticker-left" class="ticker-icon" src="https://cdn.glitch.global/dacc699f-e499-49cc-a99e-62079fdfadf6/ectos.PNG?v=1748857898189" alt="Ticker Left">
<h1 id="mission-title">Ghost Hunters Guild</h1>
<img id="ticker-right" class="ticker-icon" src="https://cdn.glitch.global/dacc699f-e499-49cc-a99e-62079fdfadf6/ectos.PNG?v=1748857898189" alt="Ticker Right">
</div>
<!-- Level Selection Section -->
<div class="level-container">
<h2 class="level-title">Select Your Mission Level</h2>
<p class="level-text">Choose your ground—where the air hums with whispers, where shadows cling too long, where something watches from just beyond sight. This is where you face the thing that should not be.</p>
<div class="carousel">
<div class="carousel-container" id="haunted-carousel">
<div class="carousel-track" id="carousel-track">
<p style="color: #ff0000; font-family: monospace; text-align: center; display: none;" id="carousel-error">Loading levels...</p>
</div>
</div>
<button class="carousel-arrow left-arrow" id="carousel-left-arrow">
<span>←</span>
</button>
<button class="carousel-arrow right-arrow" id="carousel-right-arrow">
<span>→</span>
</button>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<button class="nav-button" onclick="window.location.href='index.html'"> 🏠 Home</button>
<button class="nav-button" onclick="window.location.href='inventory.html'"> 🔮 Inventory</button>
<button class="nav-button" onclick="window.location.href='skillweb.html'"> 📖 Grim Veins</button>
<button class="nav-button" onclick="window.location.href='map.html'"> 🗺 Map</button>
<button class="nav-button" onclick="window.location.href='mission.html'"> 📜 Missions</button>
<button class="nav-button" onclick="window.location.href='monster.html'"> 📖 Monsters</button>
</div>
<script src="script.js"></script>
</body>
</html>