-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) 路 1.98 KB
/
Copy pathindex.html
File metadata and controls
45 lines (45 loc) 路 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warhead Entertainment</title>
<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=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container header-content">
<h1>Warhead Entertainment</h1>
<button id="theme-toggle" aria-label="Toggle dark mode">馃寵</button>
</div>
</header>
<main class="container">
<section id="hero">
<h2>Crafting the Next Great Adventure</h2>
<p class="subtitle">An independent game development label.</p>
</section>
<section id="about" class="card">
<h3>About Us</h3>
<p>We are currently working on our next yet-to-be-revealed anime RPG game.</p>
<p>See more about what we're working on in this post <a href="https://bsky.app/profile/taylor.warheadent.com/post/3ljocmh6qsc2t" target="_blank" class="link-button">here</a>.</p>
</section>
<section id="social" class="card">
<h3>Follow Us on Bluesky</h3>
<div class="social-links">
<a href="https://bsky.app/profile/warheadent.com" target="_blank" class="social-btn">@warheadent.com</a>
<a href="https://bsky.app/profile/taylor.warheadent.com" target="_blank" class="social-btn">@taylor.warheadent.com</a>
<a href="https://bsky.app/profile/aidan.warheadent.com" target="_blank" class="social-btn">@aidan.warheadent.com</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 Warhead Entertainment</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>