-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
312 lines (284 loc) · 11.8 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
<!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>Flipcart</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header id="navbar-container">
<nav>
<div class="logo-container">
<h2>flipkart</h2>
<p>explore Plus</p>
</div>
<div class="search-container">
<form action="" id="searchbox">
<input type="text" title="Search for products, brands and more" autocomplete="off"
placeholder="Search for products, brands and more" />
<button id="search" type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
<div class="login-container">
<button>Login</button>
<div id="extend-login-container">
<i class="fa fa-caret-down extend-down" style="color: #ffffff;"></i>
<div class="new-customer">
<p>new customer?</p>
<a href=""><span>sign up</span></a>
</div>
<ul>
<li><a href="#">my profile</a></li>
<li> <a href="#">flipcart plus zone</a></li>
<li> <a href="#">orders</a></li>
<li> <a href="#">wishlist</a></li>
<li> <a href="#">rewards</a></li>
<li> <a href="#">gift cards</a></li>
</div>
</div>
<div class="seller-contaeinr">
<a href=""><span>become a seller</span></a>
</div>
<div class="dropdown">
<div class="more-dropbtn">more</div>
<i class="fa fa fa-angle-down" style="color: #ffffff;"></i>
<div class="extend-container">
<i class="fa fa-caret-down extend-more" style="color: #ffffff;"></i>
<ul>
<li><a href="#">Notification Preferences</a> </li>
<li> <a href="#">24x7 Customer Care</a> </li>
<li> <a href="#">Advertise</a> </li>
<li> <a href="#">become a seller</a> </li>
<li> <a href="#">Download app</a> </li>
</ul>
</div>
</div>
<div class="cart-container">
<a href="">cart</a>
<i class="fa fa-shopping-cart"></i>
</div>
</nav>
</header>
<section id="category-container">
<div class="top-offers category-card">
<a href="#" class="link-card">
<img src="/Category images/top offers.png" alt="">
<h4>Top offers</h4>
</a>
</div>
<div class="grocery category-card">
<a href="#" class="link-card">
<img src="/Category images/grocery.png" alt="">
<h4>Grocery</h4>
</a>
</div>
<div class="mobile category-card">
<a href="#" class="link-card">
<img src="/Category images/mobile.png" alt="">
<h4>mobile</h4>
</a>
</div>
<div class="fashion category-card">
<a href="#" class="link-card">
<img src="/Category images/fashuion.png" alt="">
<div class="fashion-deopdown">
<h4>fashion</h4>
<i class="fa fa fa-angle-down fashion-category" style="color: #373737;"></i>
</div>
<i class="fa fa-caret-down fashion-extend-more" style="color: #ffffff;"></i>
<div class="more-categorys">
<a href="">mens</a>
<a href="">Womens</a>
<a href="">Kids</a>
<a href="">Boys</a>
<a href="">Girls</a>
</div>
</a>
</div>
<div class="home category-card">
<a href="#" class="link-card">
<img src="/Category images/home.jpg" alt="">
<h4>home</h4>
</a>
</div>
<div class="appliances category-card">
<a href="#" class="link-card">
<img src="/Category images/appliances.png" alt="">
<h4>appliances</h4>
</a>
</div>
<div class="travel category-card">
<a href="#" class="link-card">
<img src="/Category images/travel.png" alt="">
<h4>travel</h4>
</a>
</div>
<div class="beauty-more category-card">
<a href="#" class="link-card">
<img src="/Category images/beauty and more.png" alt="">
<h4>Beauty, toys & more</h4>
</a>
</div>
<div class="two-wheelers category-card">
<a href="#" class="link-card">
<img src="/Category images/two wheelers.png" alt="">
<h4>Two wheelers</h4>
</a>
</div>
</section>
<section id="slider-container">
<div class="image-container">
<img src="/slider/1.jpg" alt="" id="slider-image">
<div class="button-container">
<button class="prev slide-btn">‹</button>
<button class="next slide-btn">›</button>
</div>
</div>
</section>
<section id="top-deals-container">
<div class="headind-container">
<img src="/Headline-images/4.jpg" alt="">
<h1>Top Deals</h1>
<button>View All</button>
</div>
<div class="items-container">
<div class="item-card" id="item-card">
<a href="" class="image-container"><img src="/Top-Deals/1.jpeg" alt=""></a>
<h6>Realme Pad</h6>
<a href=""><span>From ₹9,999</span></a>
<span class="description">#1 best seller in charts!</span>
</div>
</div>
</section>
<section id="fashion-container">
<div class="headind-container">
<img src="/Headline-images/8.png" alt="">
<h1>Fashion Trends</h1>
<button>View All</button>
</div>
<div class="items-container">
<div class="item-card" id="item-card">
<a href="" class="image-container"><img src="/Fashion/9.jpg" alt=""></a>
<h6>trendy kurtas sets & more</h6>
<a href=""><span>min 75% off</span></a>
<span class="description">libas</span>
</div>
</div>
</section>
<section id="Electronics-container">
<div class="headind-container">
<img src="/Headline-images/2.jpg" alt="">
<h1>Best Of Electronics</h1>
<button>View All</button>
</div>
<div class="items-container">
<div class="item-card" id="item-card">
<a href="" class="image-container"><img src="/Best of electonics/1.jpeg" alt=""></a>
<h6>Projector</h6>
<a href=""><span>Shop now</span></a>
<span class="description">egate</span>
</div>
</div>
</section>
<section id="tags-container">
<div class="headind-container">
<img src="/Headline-images/9.jpg" alt="" id="product-Search-logo-2">
<h1>Most Search Products</h1>
<img src="/Headline-images/10 (2).png" alt="" id="product-Search-logo-1">
</div>
<div class="Most-search-products">
<a href=""><span>Realme</span></a>
<a href=""><span>64Gb RAM</span></a>
<a href=""><span>iphone</span></a>
<a href=""><span>mobiles</span></a>
<a href=""><span>samsung 171</span></a>
<a href=""><span>mens shirts</span></a>
<a href=""><span>diwali sale</span></a>
<a href=""><span>television</span></a>
<a href=""><span>hairdryar</span></a>
<a href=""><span>64 mega pixel phone</span></a>
<a href=""><span>gaming mobile</span></a>
<a href=""><span>nvdia</span></a>
<a href=""><span>games</span></a>
<a href=""><span>football</span></a>
<a href=""><span>anime</span></a>
<a href=""><span>cosplays</span></a>
<a href=""><span>saree</span></a>
<a href=""><span>gift-items</span></a>
</div>
</section>
<footer id="footer-container">
<div class="first-inner-container">
<div class="about">
<h2>about</h2>
<a href="">contect us</a>
<a href="">about us</a>
<a href="">wholesale</a>
<a href="">corporate</a>
<a href="">information</a>
<a href="">careers</a>
</div>
<div class="help">
<h2>help</h2>
<a href="">payments</a>
<a href="">shipping</a>
<a href="">cancellation</a>
<a href="">faq</a>
<a href="">report</a>
<a href="">return</a>
</div>
<div class="consumer policy">
<h2>policy</h2>
<a href="">return policy</a>
<a href="">terms of use</a>
<a href="">security</a>
<a href="">privecy</a>
<a href="">sitemap</a>
<a href="">grievance</a>
</div>
<div class="socials">
<h2>social</h2>
<a href="">facebook</a>
<a href="">twitter</a>
<a href="">youtube</a>
<a href="">instagram</a>
</div>
</div>
<div class="second-inner-container">
<div class="mail">
<h2>mail us:</h2>
<p>Flipkart Internet Private Limited,
Buildings Alyssa, Begonia &
Clove Embassy Tech Village,
Outer Ring Road, Devarabeesanahalli Village,
Bengaluru, 560103,
Karnataka, India</p>
</div>
<div class="registered-office">
<h2>registered office address:</h2>
<p>Flipkart Internet Private Limited,
Buildings Alyssa, Begonia &
Clove Embassy Tech Village,
Outer Ring Road, Devarabeesanahalli Village,
Bengaluru, 560103,
Karnataka, India
CIN : U51109KA2012PTC066107
Telephone: 044-4561470</p>
</div>
</div>
</footer>
<section id="copyright-container">
<a href="">Conditions of Use & Sale</a>
<a href="">Privacy Notice</a>
<a href="">Interest-Based Ads</a>
<p>© 2007-2023 Flipkart.com</p>
</section>
<script src="/index.js"></script>
</body>
</html>