-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.08 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Phasmophobia App</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="background-overlay"></div>
<div class="container">
<header class="spooky-header">
<h1>Phasmophobia App</h1>
<p class="subtitle">Survive the hunt with tools and knowledge</p>
</header>
<nav class="navigation">
<a href="./pages/evidence.html" class="nav-link">
<i class="fas fa-ghost"></i> Evidence Tracker
</a>
<a href="./pages/guide.html" class="nav-link">
<i class="fas fa-book-dead"></i> Ghost Guide
</a>
<a href="./pages/trivia.html" class="nav-link">
<i class="fas fa-brain"></i> Hunting Trivia
</a>
<a href="./pages/equipment.html" class="nav-link">
<i class="fas fa-toolbox"></i> Equipment Guide
</a>
</nav>
</div>
</body>
</html>