File tree Expand file tree Collapse file tree 1 file changed +127
-0
lines changed Expand file tree Collapse file tree 1 file changed +127
-0
lines changed Original file line number Diff line number Diff line change 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 - Releases</ 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+ .releases-section {
63+ max-width : 1200px ;
64+ margin : 120px auto 50px ;
65+ padding : 20px ;
66+ text-align : center;
67+ }
68+
69+ .releases-section h1 {
70+ font-size : 36px ;
71+ margin-bottom : 20px ;
72+ }
73+
74+ .release {
75+ margin : 20px 0 ;
76+ padding : 20px ;
77+ background-color : # 2F3A44 ;
78+ border-radius : 10px ;
79+ }
80+
81+ .release h2 {
82+ font-size : 24px ;
83+ margin-bottom : 10px ;
84+ }
85+
86+ footer {
87+ background-color : # 121212 ;
88+ padding : 20px ;
89+ text-align : center;
90+ color : # B0B0B0 ;
91+ position : relative;
92+ bottom : 0 ;
93+ width : 100% ;
94+ }
95+ </ style >
96+ </ head >
97+ < body >
98+ < header >
99+ < nav >
100+ < div class ="logo "> HackerOS</ div >
101+ < ul >
102+ < li > < a href ="Home-page.html "> Home</ a > </ li >
103+ < li > < a href ="download.html "> Download</ a > </ li >
104+ < li > < a href ="releases.html "> Releases</ a > </ li >
105+ < li > < a href ="about-hackeros.html "> About HackerOS</ a > </ li >
106+ < li > < a href ="hackeros-team.html "> HackerOS Team</ a > </ li >
107+ </ ul >
108+ </ nav >
109+ </ header >
110+
111+ < section class ="releases-section ">
112+ < h1 > HackerOS Releases</ h1 >
113+ < div class ="release ">
114+ < h2 > HackerOS V2.9</ h2 >
115+ < p > Latest stable release with improved performance and security features.</ p >
116+ </ div >
117+ < div class ="release ">
118+ < h2 > HackerOS V2.8</ h2 >
119+ < p > Previous release with enhanced tools for developers.</ p >
120+ </ div >
121+ </ section >
122+
123+ < footer >
124+ < p > © 2025 HackerOS. All rights reserved.</ p >
125+ </ footer >
126+ </ body >
127+ </ html >
You can’t perform that action at this time.
0 commit comments