-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (92 loc) · 2.67 KB
/
Copy pathindex.html
File metadata and controls
95 lines (92 loc) · 2.67 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NaGNU — Free as in Freedom</title>
<style>
body {
background-color: #1a1a1a;
color: #eeeeee;
font-family: sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #990000;
padding: 1em;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
background-color: #b30000;
padding: 0.5em;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 1em;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 2em;
max-width: 800px;
margin: 0 auto;
}
h2 {
border-bottom: 2px solid #b30000;
padding-bottom: 0.3em;
}
footer {
background-color: #990000;
text-align: center;
padding: 1em;
margin-top: 3em;
color: #ccc;
}
a {
color: #ff4d4d;
}
</style>
</head>
<body>
<header>
<h1>NaGNU</h1>
<p>Not A GNU, but Free as in Freedom</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#philosophy">Philosophy</a>
<a href="#download">Download</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section id="about">
<h2>About NAGNU</h2>
<p>NAGNU is a free software project designed to promote simplicity, transparency, and freedom. Inspired by the GNU project, but remastered.</p>
</section>
<section id="philosophy">
<h2>Philosophy</h2>
<p>We believe in software that respects your freedom, does not spy on you, and is hackable by design. NAGNU is built by and for those who value control over their own computing.</p>
</section>
<section id="download">
<h2>Download</h2>
<p>You can get the latest release of NAGNU software here: https://github.com/NaGNU. All code is open and licensed under the NCLv2 .</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Want to contribute or ask questions? Telegram: t.me/nagnulinuxos</p>
</section>
</main>
<footer>
<p>© 2025 NAGNU Project — Free as in Freedom. Inspired by GNU (gnu.org).</p>
</footer>
</body>
</html>