Skip to content

Commit 6df2528

Browse files
authored
Create about-hackeros.html
1 parent 7a0eb34 commit 6df2528

File tree

1 file changed

+115
-0
lines changed

1 file changed

+115
-0
lines changed

about-hackeros.html

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
<!DOCTYPE html>
2+
<html lang="pl">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>HackerOS - About</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
font-family: 'Arial', sans-serif;
13+
}
14+
15+
body {
16+
background-color: #1C2526;
17+
color: #FFFFFF;
18+
line-height: 1.6;
19+
}
20+
21+
header {
22+
background-color: #121212;
23+
padding: 20px 0;
24+
position: fixed;
25+
width: 100%;
26+
top: 0;
27+
z-index: 1000;
28+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
29+
}
30+
31+
nav {
32+
max-width: 1200px;
33+
margin: 0 auto;
34+
display: flex;
35+
justify-content: space-between;
36+
align-items: center;
37+
}
38+
39+
nav .logo {
40+
font-size: 24px;
41+
font-weight: bold;
42+
color: #FFFFFF;
43+
}
44+
45+
nav ul {
46+
list-style: none;
47+
display: flex;
48+
gap: 20px;
49+
}
50+
51+
nav ul li a {
52+
color: #FFFFFF;
53+
text-decoration: none;
54+
font-size: 18px;
55+
transition: color 0.3s;
56+
}
57+
58+
nav ul li a:hover {
59+
color: #B0B0B0;
60+
}
61+
62+
.about-section {
63+
max-width: 1200px;
64+
margin: 120px auto 50px;
65+
padding: 20px;
66+
text-align: center;
67+
}
68+
69+
.about-section h1 {
70+
font-size: 36px;
71+
margin-bottom: 20px;
72+
}
73+
74+
.about-section p {
75+
font-size: 18px;
76+
color: #B0B0B0;
77+
margin-bottom: 20px;
78+
}
79+
80+
footer {
81+
background-color: #121212;
82+
padding: 20px;
83+
text-align: center;
84+
color: #B0B0B0;
85+
position: relative;
86+
bottom: 0;
87+
width: 100%;
88+
}
89+
</style>
90+
</head>
91+
<body>
92+
<header>
93+
<nav>
94+
<div class="logo">HackerOS</div>
95+
<ul>
96+
<li><a href="Home-page.html">Home</a></li>
97+
<li><a href="download.html">Download</a></li>
98+
<li><a href="releases.html">Releases</a></li>
99+
<li><a href="about-hackeros.html">About HackerOS</a></li>
100+
<li><a href="hackeros-team.html">HackerOS Team</a></li>
101+
</ul>
102+
</nav>
103+
</header>
104+
105+
<section class="about-section">
106+
<h1>About HackerOS</h1>
107+
<p>HackerOS is a Debian-based operating system designed for security enthusiasts, developers, and professionals. It provides a robust platform with pre-installed tools for cybersecurity, development, and system administration.</p>
108+
<p>Our mission is to create a powerful and user-friendly environment for exploring the world of technology and security.</p>
109+
</section>
110+
111+
<footer>
112+
<p>&copy; 2025 HackerOS. All rights reserved.</p>
113+
</footer>
114+
</body>
115+
</html>

0 commit comments

Comments
 (0)