-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
474 lines (322 loc) · 16.6 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
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
<!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">
<script src="index.js" defer></script>
<!-- Title and Favicon -->
<title>FlipKart</title>
<!-- CSS File -->
<link rel="stylesheet" href="./assets/css/universal.css">
<link rel="stylesheet" href="./assets/css/navbar.css">
<link rel="stylesheet" href="./assets/css/categories.css">
<link rel="stylesheet" href="./assets/css/main-container.css">
<!-- google icons link -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,500,0,0" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,200,0,0" />
</head>
<!-- BODY -->
<body>
<!-- Navigation bar --->
<header id="header">
<nav id="nav-container">
<div id="navbar-logo-search">
<div class="nav-logo-block">
<a href="#" id="nav-logo-link">
<img src="./assets/images/navbar/flipkart logo.png" alt="FlipKart" id="nav-logo" width="75px">
</a>
<div id="nav-explore-plus"> <em>Explore</em> <em style="color: yellow;">Plus</em>
<img src="./assets/images/navbar/Plus icon.png" alt="" width="10px">
</div>
</div>
<div class="nav-search-bar">
<input type="text" placeholder="Search for fashion, brands & more">
<span class="material-symbols-outlined" id="nav-search-icon">search</span>
</div>
</div>
<ul id="nav-items">
<li>
<a href="#" class="nav-link">
<button class="btn" id="login-btn">Login</button>
</a>
</li>
<li class="dropdown">
<a href="#" class="nav-link ">
<span class="nav-span-text">More</span>
<span class="material-symbols-outlined nav-icons expand-icon">expand_more</span>
</a>
<ul class="dropdown-items">
<li class="dropdown-item"><span class="material-symbols-outlined">
favorite
</span><a href="#"> WishList</a></li>
<li class="dropdown-item"><span class="material-symbols-outlined">
list_alt
</span><a href="#">Your Orders</a></li>
<li class="dropdown-item"><span class="material-symbols-outlined">
settings
</span><a href="#">Setting</a></li>
<li class="dropdown-item"><span class="material-symbols-outlined">
info
</span><a href="#">Help Center</a></li>
</ul>
</li>
<li>
<a href="#" class="nav-link">
<span class="material-symbols-outlined nav-icons">shopping_cart</span>
<span class="nav-span-text">Cart</span>
</a>
</li>
</ul>
</nav>
<!----Navigation Footer for Mobile View---->
<div class="nav-footer">
<div class="nav-footer-container">
<a href="#" class="nav-footer-link">
<span class="material-symbols-outlined nav-footer-icon">
home
</span>
<span>Home</span>
</a>
<a href="#" class="nav-footer-link">
<span class="material-symbols-outlined nav-footer-icon">
category
</span>
<span>Categories</span>
</a>
<a href="#" class="nav-footer-link">
<span class="material-symbols-outlined nav-footer-icon">
account_circle
</span>
<span>Account</span>
</a>
<a href="#" class="nav-footer-link">
<span class="material-symbols-outlined nav-footer-icon">
notifications
</span>
<span>Notification</span>
</a>
<a href="#" class="nav-footer-link">
<span class="material-symbols-outlined nav-footer-icon">
shopping_cart
</span>
<span>Cart</span>
</a>
</div>
</div>
</header>
<!-- navbar completed -->
<!-- categories -->
<section id="product-categories">
<div class="categories-container">
<div id="category-items">
<div class="category-item"><img class="category-image" src="./assets/images/categories/Top_Offers.png"
alt="Top Offers">
<div class="category-item-name">
Top Offers
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/grocery.png" alt="Grocery">
<div class="category-item-name">
Grocery
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/Mobiles.png" alt="Mobiles">
<div class="category-item-name">
Mobiles
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/fashion.png" alt="fashion">
<div class="category-item-name">
Fashion<span class="material-symbols-outlined nav-icons">expand_more</span>
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/electronics.png"
alt="electronics">
<div class="category-item-name">
Electronics<span class="material-symbols-outlined nav-icons">expand_more</span>
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/Home.png" alt="Home">
<div class="category-item-name">
Home<span class="material-symbols-outlined nav-icons">expand_more</span>
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/appliances.png"
alt="appliances">
<div class="category-item-name">
Appliances
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/travel.png" alt="travel">
<div class="category-item-name">
Travel
</div>
</div>
<div class="category-item"><img class="category-image" src="./assets/images/categories/Beauty__Toys_and_more.png"
alt="Beauty,Toys and more">
<div class="category-item-name">
Beauty, Toys & more<span class="material-symbols-outlined nav-icons">expand_more</span>
</div>
</div>
</div>
</div>
</section>
<!-- categories completed -->
<!-------- Main Container --------->
<section id="main-container">
<!---------Product List 1 (Today's Deal )--------->
<div id="product-list-1" class="main-container-grid-item">
<div id="left-control" class="left-control">
<span class="material-symbols-outlined">
chevron_left
</span>
</div>
<div id="right-control" class="right-control">
<span class="material-symbols-outlined">
chevron_right
</span>
</div>
<div class="product-list-header">
<div class="best-deal-and-time ">
<div class="deals-text ft-large">Deals Of the Day</div>
<span class="material-symbols-outlined clock-icon">timer</span>
<span class="time-text">22 :07 :36 Left</span>
</div>
<button class="main-container-blue-btn btn">VIEW All</button>
</div>
<div class="product-list-items">
<div class="product-list-item">
<img src="./assets/images/main-container/watches.jpg" alt="Watches">
<div class="product-list-item-info">
<div class="product-list-item-name">Casio, FastTrack, Sonata</div>
<div class="product-list-item-discount">Upto 60%+Extra 10% off</div>
<div class="product-list-item-type">Knock Out the deal</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/women-tops.jpg" alt="women-tops">
<div class="product-list-item-info">
<div class="product-list-item-name">Women's Tops</div>
<div class="product-list-item-discount">Min. 50% Off</div>
<div class="product-list-item-type">Party, Casual & more</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/headphones.jpg" alt="headphones">
<div class="product-list-item-info">
<div class="product-list-item-name">Studio Headphones</div>
<div class="product-list-item-discount">Upto 50% Off</div>
<div class="product-list-item-type">Explore Now!</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/bags.jpg" alt="specs">
<div class="product-list-item-info">
<div class="product-list-item-name">Bags, Trolleys, Luggage & more</div>
<div class="product-list-item-discount">50-70%+Extra 10% Off</div>
<div class="product-list-item-type">WildCraft, American Tourister</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/dryer.jpg" alt="dryer">
<div class="product-list-item-info">
<div class="product-list-item-name">Hair Dryer</div>
<div class="product-list-item-discount">From ₹ 600</div>
<div class="product-list-item-type">philips, skytone & more</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/printer.jpg" alt="printer">
<div class="product-list-item-info">
<div class="product-list-item-name">Printer</div>
<div class="product-list-item-discount">From ₹ 3999</div>
<div class="product-list-item-type">HP</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/phone-case.jpg" alt="phone-case">
<div class="product-list-item-info">
<div class="product-list-item-name">Phone Case</div>
<div class="product-list-item-discount">From ₹ 150</div>
<div class="product-list-item-type">For All Top Models</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/jackets.jpg" alt="jackets">
<div class="product-list-item-info">
<div class="product-list-item-name">SweatShirts, Hoodies, Jackets...</div>
<div class="product-list-item-discount">Upto 50% Off</div>
<div class="product-list-item-type">WildCraft, Fort Collins & more</div>
</div>
</div>
</div>
</div>
<!-- Product List -1 (Today's deal ) completed -->
<!------Aside ads and offer section----->
<aside id="special-offer-section" class="main-container-grid-item">
<div>
<h5 class="aside-Text ft-large">Best Of <br> Today's Deal</h5>
<button class="main-container-blue-btn btn">VIEW ALL</button>
</div>
</aside>
<!------Aside Ads and Offer Section Completed------>
<!-- Product-List 2 for Books and Music instruments Items -->
<div id="product-list-2" class="main-container-grid-item">
<div class="product-list-header">
<div class="product-list-heading-books-shopNow">
<div class="Product-list-2-heading-books-and-more ft-large">Books And Music Instruments</div>
<div class="product-list-2-sub-heading-shopNow">Shop Now!</div>
</div>
<button class="main-container-blue-btn btn">VIEW All</button>
</div>
<div class="product-list-items">
<div class="product-list-item">
<img src="./assets/images/main-container/guitar.jpg" alt="Guitar">
<div class="product-list-item-info">
<div class="product-list-item-name">Guitars</div>
<div class="product-list-item-discount">Upto 60% off</div>
<div class="product-list-item-type">Shop Now</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/flutes.jpg" alt="book">
<div class="product-list-item-info">
<div class="product-list-item-name">Flutes</div>
<div class="product-list-item-discount">Min. 50% Off</div>
<div class="product-list-item-type">Shop Now</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/Educational books.jpg" alt="Educational Book">
<div class="product-list-item-info">
<div class="product-list-item-name">Educational Books</div>
<div class="product-list-item-discount">Upto 50% Off</div>
<div class="product-list-item-type">Explore Now!</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/Piano.jpg" alt="Piano">
<div class="product-list-item-info">
<div class="product-list-item-name">Piano</div>
<div class="product-list-item-discount">50-70%+Extra 10% Off</div>
<div class="product-list-item-type">Shop Now!</div>
</div>
</div>
<div class="product-list-item">
<img src="./assets/images/main-container/Literature-book.jpg" alt="Literature-book">
<div class="product-list-item-info">
<div class="product-list-item-name">Literature books</div>
<div class="product-list-item-discount">From ₹ 200</div>
<div class="product-list-item-type">Shop Now</div>
</div>
</div>
</div>
</div>
<!-------Product List 2 completed-------->
<!-----Main Container Done-------------->
</section>
</body>
</html>