Skip to content

Commit d3aca7b

Browse files
authored
Create download.html
1 parent 9ba28e0 commit d3aca7b

File tree

1 file changed

+155
-0
lines changed

1 file changed

+155
-0
lines changed

download.html

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
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 - Download</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+
.download-section {
63+
max-width: 1200px;
64+
margin: 120px auto 50px;
65+
padding: 20px;
66+
text-align: center;
67+
}
68+
69+
.download-section h1 {
70+
font-size: 36px;
71+
margin-bottom: 20px;
72+
}
73+
74+
.download-option {
75+
margin: 20px 0;
76+
padding: 20px;
77+
background-color: #2F3A44;
78+
border-radius: 10px;
79+
}
80+
81+
.download-option h2 {
82+
font-size: 24px;
83+
margin-bottom: 15px;
84+
}
85+
86+
.btn {
87+
display: inline-block;
88+
padding: 12px 24px;
89+
background-color: #B0B0B0;
90+
color: #121212;
91+
text-decoration: none;
92+
border-radius: 5px;
93+
font-weight: bold;
94+
margin: 10px;
95+
transition: background-color 0.3s, transform 0.3s;
96+
}
97+
98+
.btn:hover {
99+
background-color: #FFFFFF;
100+
transform: scale(1.05);
101+
}
102+
103+
footer {
104+
background-color: #121212;
105+
padding: 20px;
106+
text-align: center;
107+
color: #B0B0B0;
108+
position: relative;
109+
bottom: 0;
110+
width: 100%;
111+
}
112+
</style>
113+
</head>
114+
<body>
115+
<header>
116+
<nav>
117+
<div class="logo">HackerOS</div>
118+
<ul>
119+
<li><a href="Home-page.html">Home</a></li>
120+
<li><a href="download.html">Download</a></li>
121+
<li><a href="releases.html">Releases</a></li>
122+
<li><a href="about-hackeros.html">About HackerOS</a></li>
123+
<li><a href="hackeros-team.html">HackerOS Team</a></li>
124+
</ul>
125+
</nav>
126+
</header>
127+
128+
<section class="download-section">
129+
<h1>Download HackerOS</h1>
130+
131+
<div class="download-option">
132+
<h2>HackerOS Official</h2>
133+
<a href="https://sourceforge.net/projects/hackeros/files/HackerOS-V2.9.iso/download" class="btn">Download from SourceForge</a>
134+
<a href="https://mega.nz/file/JKsHHYgD#8Sedb7njY7Qhl2xMJa6zv6e21vtwApx9b_TNaUN4F2w" class="btn">Download from Mega.nz</a>
135+
<a href="https://drive.google.com/file/d/130W7dblGO0_aZ_U2lj8JG236AVe0dH39/view?usp=drive_link" class="btn">Download from Google Drive</a>
136+
</div>
137+
138+
<div class="download-option">
139+
<h2>HackerOS Nvidia</h2>
140+
<a href="https://sourceforge.net/projects/hackeros/files/HackerOS-V2.9.iso/download" class="btn">Download from SourceForge</a>
141+
<a href="https://mega.nz/file/JKsHHYgD#8Sedb7njY7Qhl2xMJa6zv6e21vtwApx9b_TNaUN4F2w" class="btn">Download from Mega.nz</a>
142+
<a href="https://drive.google.com/file/d/130W7dblGO0_aZ_U2lj8JG236AVe0dH39/view?usp=drive_link" class="btn">Download from Google Drive</a>
143+
</div>
144+
145+
<div class="download-option">
146+
<h2>HackerOS Cybersecurity</h2>
147+
<p>Coming soon...</p>
148+
</div>
149+
</section>
150+
151+
<footer>
152+
<p>&copy; 2025 HackerOS. All rights reserved.</p>
153+
</footer>
154+
</body>
155+
</html>

0 commit comments

Comments
 (0)