-
Notifications
You must be signed in to change notification settings - Fork 0
/
community.html
38 lines (32 loc) · 1.06 KB
/
community.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
<!DOCTYPE html>
<html>
<head>
<title>Community</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<!-- Header content goes here -->
</header>
<main>
<section class="community-section">
<h1>Welcome to the Community Hub!</h1>
<p>Connect with fellow enthusiasts and fans:</p>
<div class="community-link">
<h2>NoServer</h2>
<p>Join our NoServer platform to chat and interact!</p>
<a href="https://www.example.com/noserver" class="join-btn">Join Now</a>
</div>
<div class="community-link">
<h2>Forum</h2>
<p>Participate in discussions on our official forum.</p>
<a href="https://www.example.com/forum" class="join-btn">Visit Forum</a>
</div>
<!-- Add more community links here -->
</section>
</main>
<footer>
<!-- Footer content goes here -->
</footer>
</body>
</html>