-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
289 lines (251 loc) · 8.08 KB
/
about.html
File metadata and controls
289 lines (251 loc) · 8.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Dabaski</title>
<link rel="stylesheet" href="styles.css">
<style>
* {
box-sizing: border-box;
}
html, body {
overflow-x: hidden;
width: 100%;
margin: 0;
padding: 0;
}
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.content {
background: transparent;
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
#about {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 40px 15px;
}
#about h1 {
color: #fff;
font-size: 3rem;
font-weight: 700;
text-align: center;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#about > p {
color: rgba(255, 255, 255, 0.9);
text-align: center;
font-size: 1.2rem;
margin-bottom: 50px;
}
.about-content {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
margin-bottom: 40px;
}
.about-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.about-card h2 {
color: #667eea;
font-size: 2rem;
margin: 0 0 20px 0;
font-weight: 700;
}
.about-card p {
color: #666;
font-size: 1.1rem;
line-height: 1.8;
margin: 0 0 15px 0;
}
.about-card ul {
color: #666;
font-size: 1.1rem;
line-height: 1.8;
margin: 15px 0;
padding-left: 25px;
}
.about-card li {
margin: 10px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 30px 0;
}
.stat-box {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 30px 20px;
border-radius: 15px;
text-align: center;
color: white;
}
.stat-box .number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 10px;
}
.stat-box .label {
font-size: 1rem;
opacity: 0.9;
}
.social-section {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
text-align: center;
margin-top: 30px;
}
.social-section h2 {
color: #667eea;
font-size: 2rem;
margin: 0 0 20px 0;
font-weight: 700;
}
.social-section p {
color: #666;
font-size: 1.1rem;
margin-bottom: 30px;
}
.social-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.social-btn {
display: inline-block;
padding: 15px 35px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.social-btn:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
.contact-info {
background: #f5f5f5;
padding: 20px;
border-radius: 10px;
margin: 20px 0;
}
.contact-info h3 {
color: #667eea;
margin: 0 0 15px 0;
font-size: 1.5rem;
}
.contact-info p {
margin: 10px 0;
color: #555;
}
@media (max-width: 768px) {
#about h1 {
font-size: 2.5rem;
}
.about-card {
padding: 30px 20px;
}
.social-buttons {
flex-direction: column;
align-items: center;
}
.social-btn {
width: 100%;
max-width: 300px;
}
}
</style>
</head>
<body>
<nav class="nav">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="music/index.html">Music</a></li>
<li><a href="videos/index.html">Videos</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div class="content">
<div id="about">
<h1>About Dabaski</h1>
<p>Music Producer, Sound Designer, & Creative Artist</p>
<div class="about-content">
<div class="about-card">
<h2>Who I Am</h2>
<p>
I'm Dabaski, a music producer and artist specializing in dubstep, color bass, and lofi hip hop.
I started after wanting to make songs like big EDM producers such as Skrillex and IsaidMusic.
</p>
</div>
<div class="about-card">
<h2>My Music</h2>
<p>My discography includes:</p>
<ul>
<li><strong>PROMISE ME (2022)</strong> - Dubstep / Color Bass Album</li>
<li><strong>The Future Ain't So Bad (2019)</strong> - LoFi Hip Hop Album</li>
<li><strong>Meet Your Maker (2021)</strong> - Dubstep Single</li>
<li><strong>PROMISE ME (VIP) (2021)</strong> - VIP Remix</li>
<li>Various flips and remixes of tracks by artists like God's Warrior and GUTTER</li>
</ul>
</div>
<div class="about-card">
<h2>What I Do</h2>
<ul>
<li>Original music production (Dubstep, Color Bass, LoFi Hip Hop)</li>
<li>Sound design and synthesis</li>
<li>Remixes and flips</li>
<li>Music production tutorials and educational content</li>
<li>Behind-the-scenes content creation</li>
</ul>
</div>
</div>
<div class="stats-grid">
<div class="stat-box">
<div class="number">2+</div>
<div class="label">Albums Released</div>
</div>
<div class="stat-box">
<div class="number">10+</div>
<div class="label">Tracks & Singles</div>
</div>
<div class="stat-box">
<div class="number">3+</div>
<div class="label">Genres Explored</div>
</div>
</div>
<div class="social-section">
<h2>Connect With Me</h2>
<p>Follow my journey and stay updated with new releases, tutorials, and content.</p>
<div class="social-buttons">
<a href="https://youtube.com/@dabaski" class="social-btn" target="_blank">YouTube</a>
<a href="https://soundcloud.com/dabaski" class="social-btn" target="_blank">SoundCloud</a>
<a href="https://open.spotify.com/artist/dabaski" class="social-btn" target="_blank">Spotify</a>
</div>
<div class="contact-info">
<h3>Want to Collaborate?</h3>
<p>I'm always interested in working with other artists and creators. Reach out through my social media channels to discuss potential collaborations, remixes, or projects.</p>
</div>
</div>
</div>
</div>
</body>
</html>