forked from souvik-maity/StyleCart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
433 lines (413 loc) · 17.1 KB
/
index.html
File metadata and controls
433 lines (413 loc) · 17.1 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
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<!-- Apple Touch Icon (For iPhones & iPads) -->
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<!-- Android Chrome Favicon -->
<link rel="icon" type="image/png" sizes="192x192" href="images/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="images/android-chrome-512x512.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css">
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js" defer></script>
<title>Ecommerce Landing Page</title>
</head>
<body class="light-mode bg-slate-50">
<nav
class="bg-transparent text-black w-full uppercase tracking-[0.22px] md:text-[22px] h-3 py-2"
>
<div class="container mx-auto flex flex-row justify-between items-center">
<div>
<img
id="shopLogo"
src="./images/logo-black.png"
alt="Shop Logo"
srcset=""
/>
</div>
<ul
class="text-black hidden md:flex flex-row gap-16 justify-end items-center"
>
<li><a href="catalogue.html">Catalogue</a></li>
<li><a href="#">Fashion</a></li>
<li><a href="#">Favourite</a></li>
<li><a href="#">Lifestyle</a></li>
<li>
<button type="button" id="darkModeToggle" class="toggle">
<span class="icon sun">☀️</span>
<span class="icon moon">🌙</span>
</button>
</li>
<li class="">
<a class="bg-black text-[#FFFFF0] rounded-md py-4 px-4" href="login.html"
>Sign up</a
>
</li>
</ul>
<div class="md:hidden">
<div class="space-y-1 rotate-180" id="hamburger">
<div class="w-6 h-0.5 transition-all bg-black"></div>
<div class="w-6 h-0.5 transition-all bg-black"></div>
<div class="w-6 h-0.5 transition-all bg-black"></div>
</div>
<ul
class="text-white flex flex-col justify-start gap-5 h-screen absolute top-0 left-0 bg-primary p-10 items-start -translate-x-full transition-all z-40"
id="mobile-nav"
>
<li><a href="catalogue.html">Catalogue</a></li>
<li><a href="#">Fashion</a></li>
<li><a href="#">Favourite</a></li>
<li><a href="#">Lifestyle</a></li>
<li>
<button type="button" id="modeSwitch" class="mode-changer">
Dark Mode
</button>
</li>
<li class="mt-4 -ml-1">
<a class="bg-black text-[#FFFFF0] rounded-md py-2 px-3" href="login.html"
>Sign up</a
>
</li>
</ul>
</div>
</div>
</nav>
<section
class="flex flex-col container mx-auto bg-[#F4F6F5] rounded-[59px] pt-16 px-10 md:items-center md:px-20 md:pt-[68px] md:flex-row md:justify-between gap-10 z-30"
>
<div class="flex flex-col items-start text-black md:pb-[68px] z-10">
<h1
class="text-4xl font-black leading-[125%] sm:text-5xl md:text-[96px] md:leading-[125%]"
>
<span
class="relative after:w-[120%] after:h-full after:bg-white after:block after:absolute after:-z-10 after:top-0 after:-rotate-2"
>LET’S</span
>
<br />
EXPLORE <br />
<span
class="relative after:w-[120%] after:h-full after:bg-primary after:block after:absolute after:-z-10 after:top-0 after:-rotate-2"
>UNIQUE</span
>
<br />
CLOTHES.
</h1>
<p class="md:text-[32px]">
Live for Influential and Innovative fashion!
</p>
<div
class="flex flex-col md:flex-row md:items-center justify-evenly gap-9 pt-8"
>
<div class="w-1/2 h-1/2">
<img
class=""
src="./images/banner-image-2.png"
alt="banner image"
srcset=""
/>
</div>
<a
class="bg-black text-[#FFFFF0] rounded-md py-4 px-4 text-center"
href="#"
>Shop Now</a
>
</div>
</div>
<div class="">
<img
class="w-full"
src="./images/banner-image.png"
alt="banner image"
/>
</div>
</section>
<section class="banner">
<div class="banner__container">
<img src="images/amazon.png" alt="banner" />
<img src="images/lacoste.png" alt="banner" />
<img src="images/levis.png" alt="banner" />
<img src="images/shopify.png" alt="banner" />
<img src="images/obey.png" alt="banner" />
<img src="images/hm.png" alt="banner" />
<img src="images/FASHION.png" alt="banner" />
</div>
</section>
<section class="container mx-auto px-[10px] my-28">
<div class="relative text-black">
<h2 class="text-4xl font-black md:text-5xl z-20">
NEW ARRIVALS</h2>
<img class="mark" src="./images/banner-image-2.png" alt="img"/>
</div>
<div class="swiper mySwiper mt-10">
<div class="swiper-wrapper">
<!-- Slide 1 -->
<div class="swiper-slide flex flex-col w-full gap-7">
<img class="w-full h-[704px] object-cover object-[75%] rounded-[20px]" src="./images/hoddiee.png" alt="img" />
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">Hoodies & Sweatshirt</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="">
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="swiper-slide flex flex-col w-full gap-7">
<img class="w-full h-[704px] object-cover object-[34%] rounded-[20px]" src="./images/coats.png" alt="img" />
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">Coats & Parkas</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="">
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="swiper-slide flex flex-col w-full gap-7">
<img class="w-full h-[704px] object-cover object-[47%] rounded-[20px]" src="./images/T-shirts.png" alt="img" />
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">Tees & T-Shirt</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="">
</div>
</div>
</div>
<!--Slide 4-->
<div class="swiper-slide flex flex-col w-full gap-7">
<img class="w-full h-[704px] object-cover object-[34%] rounded-[20px]" src="./images/fav-1.png" alt="img" />
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">Coats & Parkas</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="">
</div>
</div>
</div>
<!--Slide 5-->
<div class="swiper-slide flex flex-col w-full gap-7">
<img class="w-full h-[704px] object-cover object-[34%] rounded-[20px]" src="./images/coats.png" alt="img" />
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">Coats & Parkas</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="">
</div>
</div>
</div>
<!--Slide 6-->
<div class="swiper-slide flex flex-col w-full gap-7">
<img class="w-full h-[704px] object-cover object-[34%] rounded-[20px]" src="./images/fav-2.png" alt="img" />
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">Coats & Parkas</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="">
</div>
</div>
</div>
</div>
<!-- Pagination and Navigation -->
<div>
<div class="swiper-pagination"></div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
</div>
</section>
<section
class="flex flex-col container items-start my-[190px] gap-28 mx-auto"
>
<div class="relative text-black">
<h2
class="text-4xl font-black after:content-oval after:absolute after:left-[50%] after:-bottom-2.5 after:-z-10 md:text-5xl"
>
Young’s Favourite
</h2>
</div>
<div
class="grid grid-flow-row grid-row-1 gap-12 md:grid-flow-col md:grid-cols-2"
>
<div class="flex flex-col gap-7">
<div class="">
<img
class="w-full h-[704px] object-cover object-[25%] rounded-[20px]"
src="./images/fav-1.png"
/>
</div>
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">
Trending on instagram
</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="" />
</div>
</div>
</div>
<div class="flex flex-col gap-7">
<div class="h-[704px]">
<img
class="w-full h-[704px] object-cover object-[34%] rounded-[20px]"
src="./images/fav-2.png"
/>
</div>
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col">
<h3 class="text-[32px] text-black font-medium">All Under $40</h3>
<a class="text-2xl text-[#7F7F7F]" href="#">Explore Now!</a>
</div>
<div>
<img src="./images/arrow.png" alt="" srcset="" />
</div>
</div>
</div>
</div>
</section>
<section
class="container mx-auto flex flex-col my-[190px] gap-28 md:flex-row md:justify-evenly md:items-center"
>
<div class="flex-1 flex flex-col items-center text-center md:items-start">
<h4
class="text-4xl md:text-5xl font-black text-black tracking-[3px] leading-[130%] md:leading-[150%] mb-10"
>
DOWNLOAD APP & <br />
GET THE VOUCHER!
</h4>
<p class="text-2xl font-medium leading-9 text-[#7C7C7C]">
Get 30% off for first transaction using <br />
Rondovision mobile app for now.
</p>
<div class="flex flex-col md:flex-row gap-5 mt-16">
<img
class="w-[204px]"
src="./images/apple-store.png"
alt=""
srcset=""
/>
<img
class="w-[204px]"
src="./images/play-store.png"
alt=""
srcset=""
/>
</div>
</div>
<div class="flex-1">
<img src="./images/mobile-app.png" alt="" />
</div>
</section>
<section class="flex flex-col items-center py-36 bg-primary">
<h4
class="text-3xl font-black text-white text-center tracking-[1.7px] mb-8 md:leading-[70px] md:text-[55px]"
>
JOIN SHOPPING COMMUNITY TO <br />
GET MONTHLY PROMO
</h4>
<p
class="text-xl text-center text-white font-normal md:leading-9 tracking-[1px] md:text-[32px]"
>
Type your email down below and be young wild generation
</p>
<form class="mt-12">
<div class="bg-white rounded-[10px] flex flex-row items-center">
<input
class="px-4 py-5 rounded-[10px] focus-visible:outline-0 md:py-6 md:px-7"
type="email"
name="email"
placeholder="type your email here"
/>
<button
class="py-2 px-4 bg-black text-[#FFFFF0] uppercase md:text-[33px] md:py-[5px] md:px-[20px] rounded-lg mr-2"
type="submit"
>
send
</button>
</div>
</form>
</section>
<footer
class="bg-black py-[125px] text-white flex flex-col gap-24 px-14 md:items-center md:gap-[415px] md:flex-row md:justify-between md:px-[100px]"
>
<div class="flex flex-col items-start gap-8">
<div>
<img src="./images/FASHION.png" />
</div>
<div>
<p class="text-xl text-[#8E8E8E] md:text-2xl font-normal">
Complete your style with awesome <br />
clothes from us.
</p>
</div>
<ul class="flex flex-row gap-[14px]">
<li>
<a href="#"><img src="./images/fb.svg" alt="" srcset="" /></a>
</li>
<li>
<a href="#"><img src="./images/insta.svg" alt="" srcset="" /></a>
</li>
<li>
<a href="#"><img src="./images/twitter.svg" alt="" srcset="" /></a>
</li>
<li>
<a href="#"><img src="./images/linkedin.png" alt="" srcset="" /></a>
</li>
</ul>
</div>
<div class="flex flex-col gap-[50px] md:gap-[188px] md:flex-row">
<div class="flex flex-col text-[#D9D9D9] gap-8">
<h4 class="font-bold">Company</h4>
<ul class="flex flex-col gap-8">
<li><a href="aboutUs.html">About us</a></li>
<li><a href="contactMe.html">Contact us</a></li>
<li><a href="http://">Support</a></li>
<li><a href="http://">Carrers</a></li>
<li><a href="http://" class="hover:text-yellow-400">About us</a></li>
<li><a href="contactMe.html" class="hover:text-yellow-400">Contact us</a></li>
<li><a href="http://" class="hover:text-yellow-400">Support</a></li>
<li><a href="http://" class="hover:text-yellow-400">Carrers</a></li>
</ul>
</div>
<div class="flex flex-col text-[#D9D9D9] gap-8">
<h4 class="font-bold">Quick Link</h4>
<ul class="flex flex-col gap-8">
<li><a href="http://" class="hover:text-yellow-400">Share Location</a></li>
<li><a href="http://" class="hover:text-yellow-400">Orders Tracking</a></li>
<li><a href="http://" class="hover:text-yellow-400">Size Guide</a></li>
<li><a href="http://" class="hover:text-yellow-400">FAQs</a></li>
</ul>
</div>
<div class="flex flex-col text-[#D9D9D9] gap-8">
<h4 class="font-bold">Legal</h4>
<ul class="flex flex-col gap-8">
<li><a href="http://" class="hover:text-yellow-400 !important">Terms & conditions</a></li>
<li><a href="http://" class="hover:text-yellow-400 !important">Privacy Policy</a></li>
</ul>
</div>
</div>
</footer>
<button id="scrollToTopBtn" onclick="scrollToTop()">⬆</button>
<script src="index.js"></script>
</body>
</html>