Skip to content

Commit 9ba28e0

Browse files
authored
Update Home-page.html
1 parent 67c3d65 commit 9ba28e0

File tree

1 file changed

+135
-0
lines changed

1 file changed

+135
-0
lines changed

Home-page.html

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,136 @@
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 - Home</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
font-family: 'Arial', sans-serif;
13+
}
114

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+
.hero {
63+
height: 100vh;
64+
display: flex;
65+
justify-content: center;
66+
align-items: center;
67+
text-align: center;
68+
background: linear-gradient(45deg, #1C2526, #2F3A44);
69+
}
70+
71+
.hero-content h1 {
72+
font-size: 48px;
73+
margin-bottom: 20px;
74+
color: #FFFFFF;
75+
}
76+
77+
.hero-content p {
78+
font-size: 20px;
79+
margin-bottom: 30px;
80+
color: #B0B0B0;
81+
}
82+
83+
.btn {
84+
display: inline-block;
85+
padding: 12px 24px;
86+
background-color: #B0B0B0;
87+
color: #121212;
88+
text-decoration: none;
89+
border-radius: 5px;
90+
font-weight: bold;
91+
transition: background-color 0.3s, transform 0.3s;
92+
}
93+
94+
.btn:hover {
95+
background-color: #FFFFFF;
96+
transform: scale(1.05);
97+
}
98+
99+
footer {
100+
background-color: #121212;
101+
padding: 20px;
102+
text-align: center;
103+
color: #B0B0B0;
104+
position: relative;
105+
bottom: 0;
106+
width: 100%;
107+
}
108+
</style>
109+
</head>
110+
<body>
111+
<header>
112+
<nav>
113+
<div class="logo">HackerOS</div>
114+
<ul>
115+
<li><a href="Home-page.html">Home</a></li>
116+
<li><a href="download.html">Download</a></li>
117+
<li><a href="releases.html">Releases</a></li>
118+
<li><a href="about-hackeros.html">About HackerOS</a></li>
119+
<li><a href="hackeros-team.html">HackerOS Team</a></li>
120+
</ul>
121+
</nav>
122+
</header>
123+
124+
<section class="hero">
125+
<div class="hero-content">
126+
<h1>Welcome to HackerOS</h1>
127+
<p>A powerful, Debian-based operating system designed for enthusiasts and professionals.</p>
128+
<a href="download.html" class="btn">Download Now</a>
129+
</div>
130+
</section>
131+
132+
<footer>
133+
<p>&copy; 2025 HackerOS. All rights reserved.</p>
134+
</footer>
135+
</body>
136+
</html>

0 commit comments

Comments
 (0)