-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmods.html
40 lines (37 loc) · 1.52 KB
/
mods.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
<!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 - Mods</title>
<link rel="stylesheet" href="styles.css">
</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>
</nav>
</header>
<section id="mods" class="section">
<h2>Mods & Versions</h2>
<p>Our collection of mods and custom versions brings a fresh experience to Eaglercraft. Whether you’re looking for new gameplay mechanics, performance optimizations, or custom features, we’ve got you covered.</p>
<div class="coming-soon-message">
<h3>This page is coming soon!</h3>
<p>We’re working on new mods and features. Stay tuned for updates!</p>
</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>