-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.39 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.39 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
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forge Master - Home</title>
<style>
body { font-family: sans-serif; margin:0; background: linear-gradient(to bottom right, #1a1a1a, #333); color: #eee; }
header { text-align:center; padding: 2rem 1rem; }
header h1 { font-size: 2.5rem; color: #ff8800; margin: 0; }
header p { color: #ccc; margin-top: 0.5rem; }
nav { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-bottom:2rem; }
nav a { padding:0.5rem 1rem; border-radius:1rem; text-decoration:none; background:#444; color:#eee; transition:0.2s; }
nav a:hover { background:#ff8800; color:#111; }
main { max-width:900px; margin:0 auto; padding:1rem; background: rgba(30,30,30,0.8); border-radius:1rem; }
footer { text-align:center; color:#888; padding:1rem 0; font-size:0.8rem; }
</style>
</head>
<body>
<header>
<h1>Forge Master</h1>
<p>Welcome to the community site!</p>
</header> <nav>
<a href="guide.html">Game Guide</a>
<a href="calculators.html">Calculators</a>
</nav> <main>
<h2>Welcome</h2>
<p>Explore guides, meta information, and calculators to optimize your Forge Master gameplay.</p>
</main> <footer>
Forge Master is a trademark of its respective owners. This is a fan-made resource.
</footer>
</body>
</html>