-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
103 lines (92 loc) · 4.34 KB
/
about.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!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>About - 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>
<!-- Hero Section for About Page -->
<section class="hero">
<h1>About EaglerDevs</h1>
<p>Your go-to place for innovative Minecraft mods, texture packs, and more.</p>
</section>
<!-- About Us Section -->
<section id="about-us" class="section">
<h2>Who We Are</h2>
<p>EaglerDevs is a passionate community of Minecraft developers dedicated to enhancing the gaming experience with custom mods, texture packs, and tools.</p>
<p>Our mission is to bring new dimensions and customization to the world of Minecraft, while maintaining a focus on user experience and quality.</p>
</section>
<!-- Mission Section -->
<section id="mission" class="section">
<h2>Our Mission</h2>
<p>Our mission is to provide the Minecraft community with innovative tools, mods, and texture packs that enhance gameplay and offer fresh experiences. We believe in creativity, quality, and open-source collaboration.</p>
</section>
<!-- Meet the Team Section -->
<section id="team" class="section">
<h2>Meet the Team</h2>
<div class="team-gallery">
<!-- Team Member 1 -->
<div class="team-member">
<img src="assets/team1.jpg" alt="Burnout">
<h3>Burnout</h3>
<p>Minecraft Modder & Eaglercraft Creator</p>
<p>Focused on high-performance, polished projects. Building clients, mods, and tools to push Eaglercraft’s limits.</p>
</div>
<!-- Team Member 2 -->
<div class="team-member">
<img src="assets/team2.jpg" alt="Ar-Dev-1">
<h3>Ar-Dev-1</h3>
<p>Minecraft Version Porting Specialist</p>
<p>Creates and ports Minecraft versions to Eaglercraft, enhancing compatibility and functionality.</p>
</div>
<!-- Team Member 3 -->
<div class="team-member">
<img src="assets/team3.jpg" alt="RaveTek">
<h3>RaveTek</h3>
<p>Minecraft Modder & Tool Creator</p>
<p>Works alongside Burnout and Ar-Dev-1 on high-performance projects and also creates useful tools for Eaglercraft.</p>
</div>
<!-- Team Member 4 -->
<div class="team-member">
<img src="assets/team4.jpg" alt="TylerTealDev">
<h3>TylerTealDev</h3>
<p>Developer</p>
<p>Contributes to the EaglerDevs projects with code development and overall support for the team.</p>
</div>
<!-- Team Member 5 -->
<div class="team-member">
<img src="assets/team5.jpg" alt="btplayzxgit3">
<h3>btplayzxgit3</h3>
<p>Developer & Contributor</p>
<p>Contributes with development and enhancement of tools, mods, and maintaining the project's core features alongside the team.</p>
</div>
</div>
</section>
<!-- Contact Call-to-Action Section -->
<section id="cta" class="section">
<h2>Want to Join Us?</h2>
<p>If you're interested in contributing to the EaglerDevs project, don't hesitate to reach out! We welcome creative minds and passionate developers.</p>
<a href="contact.html" class="cta-button">Get in Touch</a>
</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>