forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFPZ.html
297 lines (289 loc) · 9.45 KB
/
FPZ.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flipkart Plus Zone</title>
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<style>
body {
.product {
background-color: white;
padding: 20px;
border-radius: 4px;
width: calc(25% - 20px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product img {
width: 100%;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
transition: transform 0.3s ease;
}
.product:hover {
transform: translateY(-10px);
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.product:hover img {
transform: scale(1.1);
}
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f1f3f6;
}
.header {
background-color: #2874f0;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header .logo {
font-size: 24px;
font-weight: bold;
}
.header .search-bar {
display: flex;
margin: 0 20px;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
background-color: white;
width: 100%;
border-radius: 4px;
}
#search-icon{
background-color: white;
padding: 9px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
font-size: 15px;
font-weight: bolder;
color: #08265f;
}
.header .search-bar input {
width: 100%;
padding: 10px 10px 10px 0px;
border: none;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
outline: none;
}
.header .options {
display: flex;
gap: 20px;
}
.banner {
background-image: url('./images/fpz.jpg');
background-size: cover;
background-position: center;
height: 400px;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
color: white; /* Set text color to white */
font-size: 36px;
font-weight: bold; /* Ensure text is bold */
text-align: center; /* Center the text horizontally */
box-shadow: inset 0 0 500px 0px black; /* Apply inset box shadow */
text-shadow: 0 0 14px black; /* Apply text shadow */
}
.container {
padding: 20px;
}
.product-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.product {
background-color: white;
padding: 20px;
border-radius: 4px;
width: calc(25% - 20px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product img {
width: 100%;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}
.product .name {
font-size: 18px;
font-weight: bold;
margin: 10px 0;
}
.product .price {
color: #2874f0;
font-size: 16px;
font-weight: bold;
}
.welcome{
color: black;
text-align: center;
font-size: 36px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="header">
<div class="logo">Flipkart Plus</div>
<div class="search-bar">
<i class="bi bi-search" id="search-icon"></i>
<input id="search-input" type="text" placeholder="Search for products, brands and more">
</div>
<div class="options">
<div>Login</div>
<div>More</div>
<div>Cart</div>
</div>
</div>
<div class="banner">
</div>
<div class="container">
<div class="welcome">
Welcome to Flipkart Plus Zone
<hr>
</div>
<div class="product-list">
<div class="product">
<img src="./assets/images/phone-6.webp" alt="Product Image" />
<div class="name">Moto G</div>
<div class="price">₹9999</div>
</div>
<div class="product">
<img src="./assets/images/phone-2.webp" alt="Product Image" />
<div class="name">Poco M6 </div>
<div class="price">₹11,999</div>
</div>
<div class="product">
<img src="./assets/images/phone-3.webp" alt="Product Image" />
<div class="name">Poco C65</div>
<div class="price">₹21,999</div>
</div>
<div class="product">
<img src="./assets/images/phone-5.webp" alt="Product Image" />
<div class="name">Moto A14</div>
<div class="price">₹19,999</div>
</div>
<div class="product">
<img src="phon-4.webp" alt="Product Image" />
<div class="name">Poco C65</div>
<div class="price">₹21,999</div>
</div>
<div class="product">
<img src="phone-6.webp" alt="Product Image" />
<div class="name">Moto G</div>
<div class="price">₹9999</div>
</div>
</div>
</div>
<footer>
<div class="foot-top">
<div class="foot-left">
<div class="about">
<h5>ABOUT</h5>
<ul>
<li><a href="">Contact Us</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Careers</a></li>
<li><a href="">Flipkart Stories</a></li>
<li><a href="">Press</a></li>
<li><a href="">Corporate Information</a></li>
<li><i><a href="">Explore Plus</a></i></li>
</ul>
</div>
<div class="about">
<h5>GROUP COMPANIES</h5>
<ul>
<li><a href="https://www.myntra.com/">Myntra</a></li>
<li><a href="https://www.flipkartwholesale.com/">Flipkart Wholesale</a></li>
<li><a href="https://www.cleartrip.com/">Cleartrip</a></li>
<li><a href="https://www.shopsy.in/">Shopsy</a></li>
</ul>
</div>
<div class="about">
<h5>HELP</h5>
<ul>
<li><a href="">Payments</a></li>
<li><a href="">Shipping</a></li>
<li><a href="">Cancellation & Returns</a></li>
<li><a href="">FAQ</a></li>
<li><a href="">Report Infringement</a></li>
</ul>
</div>
<div class="about">
<div id="policy">
<h5>CONSUMER POLICY</h5>
<ul>
<li><a href="">Cancellation & Returns</a></li>
<li><a href="">Terms Of Use</a></li>
<li><a href="">Security</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">Sitemap</a></li>
<li><a href="">Grievance Redressal</a></li>
<li><a href="">EPR Compilance</a></li>
</ul>
</div>
</div>
</div>
<div class="foot-right">
<div class="part">
<div class="mail">
<h5>Mail Us:</h5>
<p>
Flipkart Internet Private Limited,<br>
Buildings Alyssa, Begonia & <br>Clove Embassy Tech Village,<br>
Outer Ring Road, Devarabeesanahalli Village,<br> Bengaluru, 560103,<br> Karnataka, India <br>
</p>
</div>
<div class="social">
<h5>Social</h5>
<ul>
<li><a href="https://www.facebook.com/flipkart/"><i class="bi bi-facebook"></i></a></li>
<li><a href="https://twitter.com/Flipkart"><i class="bi bi-twitter"></i></a></li>
<li><a href="https://www.youtube.com/flipkart"><i class="bi bi-youtube"></i></a></li>
</ul>
</div>
</div>
<div class="office">
<h5>Registered Office Address:</h5>
<p>Flipkart Internet Private Limited,<br>
Buildings Alyssa, Begonia & <br>Clove Embassy Tech Village,<br>
Outer Ring Road, Devarabeesanahalli Village,<br> Bengaluru, 560103,<br> Karnataka, India <br></p>
<p>CIN : U51109KA2012PTC066107</p>
<P>Telephone: <a href="">044-45614700</a></P>
</div>
</div>
</div>
<div class="foot-down">
<div class="ft-1">
<ul>
<li><a href=""><i class="bi bi-briefcase-fill"></i> Become a seller</a></li>
<li><a href=""><i class="bi bi-gift-fill"></i> Gift Cards</a></li>
<li><a href=""><i class="bi bi-question-circle-fill"></i> Help Center</a></li>
<div>
<li>©<span class="update_Cyear"></span> Flipkart.com</li>
</div>
</ul>
</div>
<div class="payment-icons">
<img src="./assets/images/visa.jpeg" alt="Visa">
<img src="./assets/images/mastercard.jpeg" alt="Mastercard">
<img src="./assets/images/images/rupay.png" alt="rupay">
<img src="./assets/images/images/discover.png" alt="discover">
<img src="./assets/images/images/emi.png" alt="emi">
<img src="./assets/images/images/net_banking.png" alt="net banking">
<img src="./assets/images/images/cod.png" alt="cash on delivery">
</div>
</div>
</footer>
</body>
</html>