-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtexturepacks.html
40 lines (37 loc) · 1.46 KB
/
texturepacks.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>Texture Packs - EaglerDevs</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>
<!-- Coming Soon Section -->
<section id="coming-soon" class="section">
<div class="coming-soon-message">
<h3>Coming Soon</h3>
<p>Our exciting collection of Texture Packs will be available soon! Stay tuned for stunning designs and textures to enhance your world.</p>
<a href="index.html">Return to Home</a> <!-- Example placeholder link -->
</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>