Skip to content

Commit a89c886

Browse files
authored
Add initial HTML structure for Libre Networks
1 parent 492968c commit a89c886

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Libre Networks</title>
7+
<link rel="stylesheet" href="assets/styles.css" />
8+
<link rel="icon" type="image/png" href="assets/logo.png" />
9+
<meta name="description" content="Libre Networks – Open connections, free networks, and a connected future for everyone." />
10+
</head>
11+
<body>
12+
<header class="hero">
13+
<img src="assets/logo.png" alt="Libre Networks Logo" class="logo" />
14+
<h1>Libre Networks</h1>
15+
<p class="tagline">Open Connections. Free Networks.</p>
16+
</header>
17+
18+
<section class="mission">
19+
<h2>Our Mission</h2>
20+
<p>
21+
Libre Networks is a community-driven initiative dedicated to building and promoting open, equitable, and decentralized communication networks.
22+
We believe everyone deserves free access to reliable connectivity — and the knowledge to shape it.
23+
</p>
24+
</section>
25+
26+
<section class="projects">
27+
<h2>What We Do</h2>
28+
<ul>
29+
<li><strong>Open Infrastructure:</strong> Developing and sharing open-source networking tools.</li>
30+
<li><strong>Community Connectivity:</strong> Supporting local mesh networks and digital inclusion projects.</li>
31+
<li><strong>Education:</strong> Teaching digital freedom, privacy, and open technology skills.</li>
32+
</ul>
33+
</section>
34+
35+
<section class="join">
36+
<h2>Join the Network</h2>
37+
<p>
38+
Libre Networks is open to collaborators, developers, educators, and community builders worldwide.
39+
Get involved, contribute code, share ideas, or help expand open networks near you.
40+
</p>
41+
<a href="https://github.com/librenetworks" class="button">Visit Our GitHub</a>
42+
</section>
43+
44+
<footer>
45+
<p>© <span id="year"></span> Libre Networks · <a href="https://librenetworks.org">librenetworks.org</a></p>
46+
</footer>
47+
48+
<script>
49+
document.getElementById('year').textContent = new Date().getFullYear();
50+
</script>
51+
</body>
52+
</html>

0 commit comments

Comments
 (0)