-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
295 lines (287 loc) · 7.96 KB
/
index.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DJ Szewcu - Official Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Roboto", sans-serif;
width: 100%;
margin: 0;
padding: 0;
background-image: url(./assets/szewcu_bg.jpg);
background-size: cover;
color: #fff;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.container h1 {
padding-top: 40px;
}
header {
position: relative;
padding: 20px 0;
text-align: center;
}
.overlay {
position: absolute;
inset: 0;
background-color: #222;
z-index: -1;
opacity: 50%;
}
h1 {
font-family: "Bruno Ace SC", sans-serif;
font-size: 3em;
margin: 0;
text-transform: uppercase;
letter-spacing: 3px;
}
h3 {
margin-bottom: 4px;
}
nav {
display: flex;
justify-content: space-between;
margin: 0 auto;
margin-top: 40px;
margin-bottom: 20px;
text-transform: uppercase;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
transition: color 0.3s ease;
}
nav a:hover {
color: #f0c300;
}
.hero {
background: url("https://websim.ai/dj-szewcu/hero-bg.jpg") no-repeat
center center;
background-size: cover;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
}
.hero-content {
text-align: center;
background-color: rgba(0, 0, 0, 0.7);
padding: 40px;
border-radius: 10px;
}
.hero-content h2 {
font-family: "Bruno Ace SC", sans-serif;
}
.hero-content p {
margin-bottom: 35px;
}
.cta-button {
display: inline-block;
background-color: #f0c300;
color: #111;
padding: 15px 30px;
font-size: 1.2em;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #ffd700;
}
.music-player {
background-color: #222;
padding: 20px;
border-radius: 10px;
margin-top: 40px;
}
.bio {
padding: 0 20px;
}
.bio p {
line-height: 25px;
}
.contact {
padding: 0 20px;
}
.contact p {
margin: 10px 0;
}
.email-link,
.email-link:active {
color: #f0c300;
}
.social-links {
margin-top: 40px;
text-align: center;
}
.social-links a {
color: #fff;
font-size: 2em;
margin: 0 10px;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #f0c300;
}
footer {
position: relative;
text-align: center;
margin-top: 40px;
display: flex;
align-items: center;
}
.footer_logo {
max-width: 100px;
}
@media (min-width: 768px) {
nav {
width: 50%;
}
nav a {
font-size: 1.2em;
}
.contact,
.bio {
padding: 0;
}
}
</style>
<script
src="https://kit.fontawesome.com/d7afd7d2f2.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<div class="container">
<h1>DJ Szewcu</h1>
<nav>
<a href="#home">Home</a>
<a href="#music">Music</a>
<a href="#bio">About</a>
<a href="#contact">Contact</a>
</nav>
</div>
<div class="overlay"></div>
</header>
<main>
<section id="home" class="hero">
<div class="hero-content">
<h2>welcome to the world of mixed by dj szewcu</h2>
<p>Experience the beats that move the crowd</p>
<a href="#music" class="cta-button">Listen Now</a>
</div>
</section>
<div class="container">
<section id="music" class="music-player">
<h2>Latest Tracks</h2>
<iframe
width="100%"
height="500"
scrolling="no"
frameborder="no"
allow="autoplay"
src=" https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/1872805310&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true "
></iframe>
<div
style="
font-size: 10px;
color: #cccccc;
line-break: anywhere;
margin-top: 20px;
word-break: normal;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-family: Interstate, Lucida Grande, Lucida Sans Unicode,
Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;
font-weight: 100;
"
>
https://soundcloud.com/djszewcu dj szewcu<a
href="https://soundcloud.com/djszewcu/sets/szewcu-mix"
style="color: #f0c300"
>
· miks szewcu</a
>
</div>
</section>
<section id="bio" class="bio">
<h2>About DJ Szewcu</h2>
<p>
DJ Szewcu is a rising star in the electronic music scene, known for
his unique blend of drum'n'bass, house, techno, and trance. With a
passion for music that started at a young age, Szewcu has been
honing his skills behind the decks for over a decade. His energetic
sets and innovative productions have earned him a dedicated
following and bookings at some of the most prestigious clubs and
festivals around the world.
</p>
</section>
<section id="contact" class="contact">
<h3>Get in Touch</h3>
<p>For bookings and inquiries, please contact:</p>
<p>
Email:
<a href="mailto:djdomin@int.pl" class="email-link"
>djdomin@int.pl</a
>
</p>
</section>
<div class="social-links">
<h5>Social Media</h5>
<a
href="https://soundcloud.com/djszewcu"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-soundcloud"></i
></a>
</div>
</div>
</main>
<footer>
<img
src="./assets/szewcu_logo.png"
alt="DJ Szewcu logo"
class="footer_logo"
/>
<div class="container">
<p>© 2024 DJ Szewcu. All rights reserved.</p>
</div>
<img
src="./assets/szewcu_logo.png"
alt="szewcu logo"
class="footer_logo"
/>
<div class="overlay"></div>
</footer>
<script>
// Add smooth scrolling to nav links
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
document.querySelector(this.getAttribute("href")).scrollIntoView({
behavior: "smooth",
});
});
});
// Add parallax effect to hero section
window.addEventListener("scroll", function () {
const hero = document.querySelector(".hero");
const scrollPosition = window.pageYOffset;
hero.style.backgroundPositionY = scrollPosition * 0.5 + "px";
});
</script>
</body>
</html>