-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.63 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.63 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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eaglercraft Clients</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Eaglercraft Clients</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="clients.html">Clients</a></li>
</ul>
</nav>
<div class="logo"></div>
</header>
<main>
<section class="hero">
<h2>Welcome to Eaglercraft Clients</h2>
<p>Your hub for the best Eaglercraft clients.</p>
<a href="clients.html" class="cta-button">Downloads</a>
</section>
<section class="features">
<h2>Features</h2>
<div class="feature-grid">
<div class="feature-item">
<h3>Feature 1: Client Downloads</h3>
<p>Get Eaglercraft clients from our site. It's easy to download and use, making your gaming experience better.</p>
</div>
<div class="feature-item">
<h3>Feature 2: Client Info</h3>
<p>Learn about each Eaglercraft client, like what it does and if it's right for you. It's all the details you need to know before you start playing.</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 FlqmeDevMC. All rights reserved.</p>
</footer>
</body>
</html>