-
Notifications
You must be signed in to change notification settings - Fork 48
/
kids.html
406 lines (390 loc) · 22.6 KB
/
kids.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Meta Description -->
<meta name="description"
content="Discover chemical-free beauty products, stylish shoes, and innovative gadgets in our online store. Shop with confidence and quality!">
<!-- Meta Keywords -->
<meta name="keywords"
content="beauty products, quality shoes, innovative gadgets, online shopping, Smartphones, Clothes, Kids">
<!-- Meta Tags Open Graph (OG Tags) -->
<meta property="og:title" content="Quality Beauty, Shoes, and Gadgets Store - Your Store Name">
<meta property="og:description"
content="Discover chemical-free beauty products, stylish shoes, and innovative gadgets in our online store. Shop with confidence and quality!">
<meta property="og:image" content="https://ourcodeshop.vercel.app/images/banner-products/iphone.png">
<meta property="og:url" content="https://ourcodeshop.vercel.app/">
<!-- Meta Tags Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Quality Beauty, Shoes, and Gadgets Store - Your Store Name">
<meta name="twitter:description"
content="Discover chemical-free beauty products, stylish shoes, and innovative gadgets in our online store. Shop with confidence and quality!">
<meta name="twitter:image" content="https://ourcodeshop.vercel.app/images/banner-products/iphone.png">
<!-- Fav Icon -->
<link rel="icon" href="images/logo.png" type="image/gif" sizes="16x16">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- Main css -->
<link rel="stylesheet" href="style.css">
<!-- --Font awesome-- -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link href="//cdn-images.mailchimp.com/embedcode/classic-061523.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup {
clear: left;
font: 14px Helvetica, Arial, sans-serif;
width: 400px;
}
/* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<title>review</title>
</head>
<body>
<!-- Header start -->
<header>
<nav class="navbar navbar-expand-lg navbar-light fill">
<a class="navbar-brand" href="/index.html"><img src="images/logo.png" alt="Code Shop home"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="/Code-Shop-master">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#smartphone">Smartphone</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#MenTshirt">Men</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#WomanMenTshirt">Women</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#Kids">Kids</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./about/About.html">About Us</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#contact">Contact Us</a>
</li>
</ul>
</div>
</nav>
</header>
<h1 class="ml-2 mt-3">Bestsellers here!</h1>
<section id="Kids" >
<div class="ml-5 row justify-content-around card-hover align-items-center ">
<div class=" col-lg-4 col-md-6 col-sm-12 mb-5 ">
<div class="card text-center " style="width: 18rem;border:none;">
<img src="images/kids1.jpg" class="card-img-top" alt="...">
<div class="card-body ">
<h2>Parents choice</h2>
<p>
<li>Double layered shirts</li>
<li>Made with artificial cotton</li>
<li>Available in mmulti-colours</li>
</p>
<h5 class="card-title"><b>Kid's Solid</b></h5>
<p class="card-text">Navy Blue solid t-shirt.(6-8 yrs)</p>
<h5><b>$18</b></h5>
<a href="#" class="btn laptop-btn">BUY NOW
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-arrow-right"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z" />
<path fill-rule="evenodd"
d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z" />
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-5 mx-auto">
<div class="card text-center" style="width: 18rem;border:none;">
<img src="images/kids2.jpg" class="card-img-top" alt="image not found">
<div class="card-body">
<h2>Parents choice</h2>
<p>
<li>Double layered shirts</li>
<li>Made with artificial cotton</li>
<li>Available in mmulti-colours</li>
</p>
<h5 class="card-title"><b>Kids Striped</b></h5>
<p class="card-text">Red/White horizontal striped.(5-6 yrs)</p>
<h5><b>$14</b></h5>
<a href="#" class="btn laptop-btn">BUY NOW
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-arrow-right"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z" />
<path fill-rule="evenodd"
d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z" />
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-5 mx-auto">
<div class="card text-center" style="width: 18rem;border:none;">
<img src="images/kids3.jpg" class="card-img-top" alt="image not found">
<div class="card-body">
<h2>Parents choice</h2>
<p>
<li>Double layered shirts</li>
<li>Made with artificial cotton</li>
<li>Available in mmulti-colours</li>
</p>
<h5 class="card-title"><b>Kid's Striped</b></h5>
<p class="card-text">Blue/Yellow Striped.(9-11 yrs)</p>
<h5><b>$20</b></h5>
<a href="#" class="btn laptop-btn">BUY NOW
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-arrow-right"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z" />
<path fill-rule="evenodd"
d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<h1 class="ml-2">See more options here!</h1>
<section id="Kids">
<div class="row justify-content-around mt-4 card-hover align-items-center ml-5 ">
<div class="col-lg-4 col-md-6 col-sm-12 mb-5 ">
<div class="card text-center" style="width: 18rem;border:none;">
<img src="images/laptop/ktshirt.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><b>Kid's Solid</b></h5>
<p class="card-text">Navy Blue solid t-shirt.(6-8 yrs)</p>
<h5><b>$18</b></h5>
<a href="#" class="btn laptop-btn">BUY NOW
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-arrow-right"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z" />
<path fill-rule="evenodd"
d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z" />
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-5 mx-auto">
<div class="card text-center" style="width: 18rem;border:none;">
<img src="images/laptop/ktshirt2.jpg" class="card-img-top" alt="image not found">
<div class="card-body">
<h5 class="card-title"><b>Kids Striped</b></h5>
<p class="card-text">Red/White horizontal striped.(5-6 yrs)</p>
<h5><b>$14</b></h5>
<a href="#" class="btn laptop-btn">BUY NOW
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-arrow-right"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z" />
<path fill-rule="evenodd"
d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z" />
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-5 mx-auto">
<div class="card text-center" style="width: 18rem;border:none;">
<img src="images/laptop/ktshirt3.jpg" class="card-img-top" alt="image not found">
<div class="card-body">
<h5 class="card-title"><b>Kid's Striped</b></h5>
<p class="card-text">Blue/Yellow Striped.(9-11 yrs)</p>
<h5><b>$20</b></h5>
<a href="#" class="btn laptop-btn">BUY NOW
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-arrow-right"
fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z" />
<path fill-rule="evenodd"
d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-sec1">
<h3>My CodeShop</h3>
<div class="footer-sec1-item1">
<ul>
<li><a href="">Account</a></li>
<li><a href="">Cart</a></li>
<li><a href="">Wish List</a></li>
<li><a href="">Orders</a></li>
</ul>
</div>
<div class="footer-sec1-item2">
<h4>Language:</h4>
<form action="#">
</iconify-icon>
<iconify-icon icon="ph:globe-thin"
style="font-size: 2rem;position: relative;top: 10px;"></iconify-icon><select name=""
id="" onfocus="">
<option value="English" selected> </iconify-icon> English</option>
<option value="English"> हिन्दी </option>
<option value="English"> Punjabi</option>
</select>
</form>
</div>
</div>
<div class="footer-sec2">
<h3>Categories</h3>
<ul>
<li><a href="">Electronics</a></li>
<li><a href="#smartphone">Smartphone</a></li>
<li><a href="MenTshirt">Men's</a></li>
<li><a href="#WomanMenTshirt">Women's</a></li>
<li><a href="#Kids">Kid's</a></li>
<li><a href="">Footwear</a></li>
<li><a href="">Sports</a></li>
</ul>
</div>
<div class="footer-sec3">
<h3>Our Pages</h3>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="">Log In</a></li>
<li><a href="#About">About us</a></li>
<li><a href="">Sellers</a></li>
<li><a href="">Faqs</a></li>
<li><a href="">Faqs</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
<div class="footer-sec4">
<h3>Connect with Us</h3>
<div class="footer-sec4-item1">
<ul>
<li>
<a href="#contact" title="Contact" aria-label="Contact">
<iconify-icon icon="grommet-icons:contact"
style="padding-right: 0.5em;"></iconify-icon>
Contact Us
</a>
</li>
<li>
<a href="mailto:[email protected]" title="Email" aria-label="Email">
<iconify-icon icon="mdi:email-edit-outline"
style="padding-right: 0.5em;"></iconify-icon>
Email
</a>
</li>
<li>
<a href="#" title="Facebook" aria-label="Facebook">
<iconify-icon icon="ri:facebook-fill"
style="padding-right: 0.5em;"></iconify-icon>
Facebook
</a>
</li>
<li>
<a href="https://github.com/SyedImtiyaz-1/Code-Shop" title="Github"
aria-label="Github" target="_blank">
<iconify-icon icon="icon-park:github"
style="padding-right: 0.5em;"></iconify-icon>
Github
</a>
</li>
</ul>
</div>
<div class="footer-sec4-item2">
<h4>Offers</h4>
<ul>
<li><a href="">Festive Offers</a></li>
<li><a href="">Bank offers</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-lower">
<div class="footer-lower-item1">
<!-- Mailchimp Newsletter embedded form -->
<div id="mc_embed_shell">
<div id="mc_embed_signup">
<!-- Add Your mailchip embedded form url -->
<form action="Add Your mailchip embedded form url" method="post"
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
target="_blank">
<div id="mc_embed_signup_scroll">
<p
style="font-size: 1rem; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;margin-bottom: 0.3em;">
Get latest News and Product offers
</p>
<div class="mc-field-group"><label for="mce-EMAIL">Email Address <span
class="asterisk">*</span></label><input type="email" name="EMAIL"
class="required email" id="mce-EMAIL" required="" value=""></div>
<div id="mce-responses" class="clear foot">
<div class="response" id="mce-error-response" style="display: none;"></div>
<div class="response" id="mce-success-response" style="display: none;">
</div>
</div>
<div class="optionalParent">
<div class="clear foot">
<input type="submit" name="subscribe" id="mc-embedded-subscribe"
class="button" value="Subscribe">
<p style="margin: 0px auto;"><a href="http://eepurl.com/iBueXU"
title="Mailchimp - email marketing made easy and fun"><span
style="display: inline-block; background-color: transparent; border-radius: 4px;"><img
class="refferal_badge"
src="https://digitalasset.intuit.com/render/content/dam/intuit/mc-fe/en_us/images/intuit-mc-rewards-text-dark.svg"
alt="Intuit Mailchimp"
style="width: 220px; height: 40px; display: flex; padding: 2px 0px; justify-content: center; align-items: center;"></span></a>
</p>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="footer-lower-item2">
<p
style="font-size: 1rem; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;margin-bottom: 0.3em;">
Our Payment Partners</p>
<div class="payment-logos">
<iconify-icon id="payment-logos1" icon="logos:mastercard"
style="font-size: 30px;"></iconify-icon>
<iconify-icon id="payment-logos2" icon="logos:visaelectron" width="45"
style="padding-top: 0.5em;"></iconify-icon>
<iconify-icon id="payment-logos3" icon="simple-icons:amazonpay" width="40"></iconify-icon>
<iconify-icon id="payment-logos4" icon="logos:google-pay"
style="font-size: 25px; padding-top: 0.3em;"></iconify-icon>
<iconify-icon id="payment-logos5" icon="logos:paypal"
style="font-size: 30px;"></iconify-icon>
<iconify-icon id="payment-logos6" icon="simple-icons:paytm" width="45"
style="padding-top: -0.5em;"></iconify-icon>
<iconify-icon id="payment-logos7" icon="simple-icons:phonepe"
style="font-size: 35px;"></iconify-icon>
</div>
</div>
</div>
<div class="text-center m-2">
<strong>Code Shop</strong> © <span id="copyRightYear"></span> All Right reserved
</div>
</div>
</footer>
</body>
</html>