-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
388 lines (373 loc) · 15.8 KB
/
home.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Underground Store | TR</title>
<link rel="shortcut icon" href="img/underground-store-logo.png" type="image/x-icon" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/main.css" />
<script src="https://kit.fontawesome.com/5e36563075.js" crossorigin="anonymous"></script>
</head>
<body id="top">
<header class="header">
<div class="backToTop">
<a href="#top">
<img src="img/back-to-top.png" />
</a>
</div>
<nav class="navbar navbar-expand-md fixed-top py-3 navbar-dark bg-secondary bg-opacity-25" style="z-index: 2">
<div class="container-fluid">
<a class="navbar-brand text-light text-uppercase fw-bolder fs-3" href="home.html">Underground Store</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#undergroundNavbar"
aria-controls="undergroundNavbar"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span>
<i class="fas fa-bars text-white"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="undergroundNavbar">
<ul class="navbar-nav d-flex justify-content-center align-items-center gap-lg-3 gap-1 ms-auto">
<li class="nav-item">
<a class="nav-link active text-light fs-4 fw-semibold" aria-current="page" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link fs-4 text-light" href="clothing.html">Clothing</a>
</li>
<li class="nav-item">
<a class="nav-link nav-hover fs-4 text-light" href="albums.html">Albums</a>
</li>
<li class="nav-item">
<a class="nav-link fs-4 text-light" href="faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link fs-4 text-light" href="about-us.html">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section id="hero">
<div class="container-fluid vh-100 hero">
<div class="hero__text-container">
<h1 class="heading-title text-uppercase text-light mb-5">
<p class="heading-title__main-title mb-5 display-1">UNDERGROUND LIFE</p>
<p class="heading-title__subtitle display-6 lh-base">Everything You Need in One Place</p>
</h1>
<a href="#" class="btn btn--white btn--animated">Explore</a>
</div>
</div>
</section>
<section id="story">
<div class="container-fluid story">
<div class="row h-100">
<div
class="col-6 px-5 ms-5 d-flex flex-column gap-5 align-items-start justify-content-center"
style="width: 70%"
>
<h1 class="display-1 mb-3 text-light">THE STORY</h1>
<p class="text-light fs-3 lh-base">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti, sit dolor. <br />
Eveniet sequi magnam doloru ea tempore quasi non dicta in nesciunt nemo. <br />
Eveniet sequi magnam doloru ea tempore quasi non dicta in nesciunt nemo.
</p>
<p class="text-light fs-3 lh-base">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti, sit dolor. <br />
Eveniet sequi magnam doloru ea tempore quasi non dicta in nesciunt nemo. <br />
Eveniet sequi magnam doloru ea tempore quasi non dicta in nesciunt nemo.
</p>
</div>
</div>
</div>
</section>
<section id="albums">
<div class="container-fluid bg-secondary bg-opacity-25 py-3">
<div class="row">
<div class="col-12 col-md-5">
<img
class="img-fluid h-100 rounded-2 d-block m-auto albums-img"
src="img/home-album-def.jpg"
alt="home-page-album"
/>
</div>
<div class="col-md-6 d-flex flex-column justify-content-center align-items-center gap-sm-3 gap-lg-3">
<h3 class="product-title display-2 fw-semibold text-dark">Defkhan</h3>
<h5 class="product-subtitle fs-3">Beş Dokuz(Plak)</h5>
<div class="rating mb-3">
<ul class="d-flex text-decoration-none list-unstyled">
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
</ul>
</div>
<p class="fs-2 ms-md-5 lh-base text-md-center mb-md-3" style="width: 90%">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sed nibh pharetra, congue lectus at,
malesuada augue. Donec tincidunt faucibus lacus malesuada augue.
</p>
<div class="d-grid gap-2 d-sm-block">
<a
class="btn btn-danger px-4 py-4 rounded-5 btn-lg fs-4 fw-bolder"
type="button"
href="./album_products/album-1.html"
>
BUY MP3 ALBUM
</a>
<a
class="btn btn-warning px-4 py-4 rounded-5 btn-lg fs-4 text-light fw-bolder"
type="button"
href="./album_products/album-1.html"
>
BUY CD ALBUM
</a>
</div>
</div>
</div>
</div>
</section>
<section id="carousel" class="bg-light py-4">
<div class="container-lg">
<div class="row">
<div class="col">
<div id="undergroundCarouselCaption" class="carousel slide" data-bs-ride="false">
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#undergroundCarouselCaption"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Quote 1"
></button>
<button
type="button"
data-bs-target="#undergroundCarouselCaption"
data-bs-slide-to="1"
aria-label="Quote 2"
></button>
<button
type="button"
data-bs-target="#undergroundCarouselCaption"
data-bs-slide-to="2"
aria-label="Quote"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="img/quote-img-1.jpg"
class="d-block w-100 img-fluid rounded-5"
alt="Norm-Ender-Quote"
style="height: 54rem"
/>
<div class="carousel-caption d-none d-sm-block">
<h5 class="fs-3">Norm Ender</h5>
<p>Herkesi yavaş yavaş tanıyorsun Pastadaki mum sayısı çoğalınca...</p>
</div>
</div>
<div class="carousel-item">
<img
src="img/quote-img-2.jpg"
style="height: 54rem"
class="d-block w-100 img-fluid rounded-5"
alt="Defkhan-Quote"
/>
<div class="carousel-caption d-none d-sm-block">
<h5 class="fs-3">Defkhan</h5>
<p>Sana sabah peynir ekmek Filistin'de bomba var...</p>
</div>
</div>
<div class="carousel-item">
<img
src="img/quote-img-3.jpeg"
class="d-block w-100 img-fluid rounded-5 shadow-lg"
style="height: 54rem"
alt="Sagopa-Kajmer-Quote"
/>
<div class="carousel-caption d-none d-sm-block">
<h5 class="fs-3">Sagopa Kajmer</h5>
<p>"düşman" kelimesinin anlamını arkadaş sıfatını taşıyanlardan öğrendim.</p>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#undergroundCarouselCaption"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#undergroundCarouselCaption"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</div>
</section>
<section id="clothing">
<div class="container-fluid bg-secondary bg-opacity-25 py-3">
<div class="row">
<div class="col-12 col-md-5 order-md-last ms-auto">
<img class="img-fluid rounded-4 ms-auto d-block m-auto clothing-img" src="img/home-tshirt-ceza.jpg" />
</div>
<div class="col-md-6 d-flex flex-column justify-content-center align-items-center gap-sm-3 gap-lg-3 ms-lg-5">
<h3 class="product-title display-2 fw-bolder m-0">Ceza</h3>
<h5 class="product-subtitle fs-3">T-Shirt</h5>
<div class="rating mb-3">
<ul class="d-flex text-decoration-none list-unstyled">
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
<li><i class="fa-solid fa-star ★ fa-yellow"></i></li>
</ul>
</div>
<p class="fs-2 ms-md-5 lh-base text-md-center mb-md-3" style="width: 90%">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sed nibh pharetra, congue lectus at,
malesuada augue. Donec tincidunt faucibus lacus malesuada augue. Lorem ipsum dolor sit amet, consectetur
adipiscing elit.
</p>
<div class="d-grid gap-2 d-sm-block">
<a
class="btn btn-danger px-4 py-4 rounded-5 btn-lg fs-4 fw-bolder"
type="button"
href="clothing_products/clothing-1.html"
>
BUY T-SHIRT
</a>
<a
class="btn btn-warning px-4 py-4 rounded-5 btn-lg fs-4 text-light fw-bolder"
type="button"
href="clothing_products/clothing-1.html"
>
BUY HOODIE
</a>
</div>
</div>
</div>
</div>
</section>
<section id="slogan" class="bg-light">
<div class="container py-3">
<div class="row">
<div class="col-md-12 text-center p-4">
<h4 class="mb-5 fw-bold mx-auto lh-base" style="font-size: 3.6rem; opacity: 0.75">
Take your first step into underground life with albums and dresses.
</h4>
<a class="btn btn-success btn-lg px-5 py-3 rounded-5 fs-4 fw-bolder" href="./clothing.html"> SHOP NOW </a>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="container-fluid footer-bg">
<div class="row d-flex justify-content-center align-items-center gap-5 flex-column text-center">
<div class="col-md-6">
<h2
class="subscribe-title text-center text-decoration-underline text-light mt-5 mb-5"
style="font-size: 5rem"
>
SUBSCRIBE
</h2>
</div>
<div class="col-md-6 mb-5">
<div class="row">
<div class="input-group">
<input
type="text"
aria-label="First name"
placeholder="Your Name"
class="form-control form-subscribe border-dark"
/>
<input
type="text"
aria-label="Last name"
placeholder="Your Email"
class="form-control form-subscribe border-dark"
/>
</div>
</div>
</div>
<div class="col-md-6 mb-5">
<button class="btn btn-dark text-light fw-bold btn-lg py-3 px-5 rounded-5 fs-4">SUBSCRIBE</button>
</div>
<div class="col-md-12 mb-5">
<div class="shape-line">
<img src="img/shape-line.png" alt="" class="img-fluid" />
</div>
</div>
<div class="col-md-12 mb-5">
<div class="social-icons">
<ul class="list-unstyled d-flex justify-content-center gap-5">
<li>
<a href=""
><span><i class="fa-brands fa-facebook fa-3x"></i></span
></a>
</li>
<li>
<a href=""
><span><i class="fa-brands fa-twitter fa-3x"></i></span
></a>
</li>
<li>
<a href=""
><span><i class="fa-brands fa-instagram fa-3x"></i></span
></a>
</li>
<li>
<a href=""
><span><i class="fa-brands fa-youtube fa-3x"></i></span
></a>
</li>
</ul>
</div>
</div>
<div class="col-md-12">
<div class="shape-line">
<img src="img/shape-line.png" alt="" class="img-fluid" />
</div>
</div>
<div class="col-md-12 mb-3">
<div class="address text-light d-flex flex-column gap-4">
<h4>Underground Store</h4>
<h4>Yenimahalle, Ankara</h4>
<h4>+1 243 456 789</h4>
<h4>hello@undergroundstore.com</h4>
</div>
</div>
<div class="col-md-12 mb-3">
<div class="shape-line">
<img src="img/shape-line.png" alt="" class="img-fluid" />
</div>
</div>
<div class="col-md-12 text-light">
<p>Copyright © Underground Store. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"
></script>
</body>
</html>