-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (42 loc) · 1.71 KB
/
index.html
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EaglerDevs - Home</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="nav-bar">
<div class="logo">EaglerDevs</div>
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="mods.html">Mods</a></li>
<li><a href="texturepacks.html">Texture Packs</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="nav-toggle" id="nav-toggle">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<section id="home" class="section hero">
<div class="hero-content">
<h1>Welcome to <span class="highlight">EaglerDevs</span></h1>
<p>Enhancing your Minecraft experience with mods, custom versions, and texture packs for Eaglercraft.</p>
<button class="cta-button" onclick="window.location.href='projects.html'">Explore Our Work</button>
</div>
</section>
<footer>
<p>© 2024 EaglerDevs. All rights reserved. | <a href="https://github.com/EaglerDevs" target="_blank" class="highlight">GitHub</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>