-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuyback&sell.html
482 lines (426 loc) · 18.6 KB
/
Buyback&sell.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
475
476
477
478
479
480
481
482
<!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>Buyback & Sell Policy</title>
<script src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous" ></script>
<link rel="icon" type="image/x-icon" href="https://d2pyicwmjx3wii.cloudfront.net/s/5f447e14285691dcc9bfcdf2/5f8d4b8aecff0cf1fd324ab5/webp/logo_logo-240x240.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="home.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Chettan+2&family=Poppins:wght@400;500&family=Roboto+Slab&display=swap" rel="stylesheet">
<style>
body{background-image: url(https://cdn.storehippo.com/s/5f447e14285691dcc9bfcdf2/ms.files/body_bg.png);
font-family: "Baloo Chettan 2",sans-serif;
}
.navbox{
height:40%;
width:100%;
/* border:1px solid red; */
}
.navbox>div:nth-child(1){
height:100%;
width:100%;
display:flex;
justify-content:space-around;
text-align: center;
/* border:1px solid black; */
}
.navbox>div:nth-child(1)>div{
/* border:1px solid black; */
width:15%;
text-align:center;
display:flex;
justify-content: space-around;
}
.navbox>div:nth-child(1)>div>:hover{
color:blue;
}
.navbox2{
height:50px;
width:100%;
background-color: gold;
display:flex;
justify-content:flex-start;
padding-left:12%;
gap:20px;
}
.shopcontent,.morecontent{
display:none;
background-color: #f9f9f9;
width:auto;
height:auto;
padding-left: 10px ;
padding-right: 20px;
z-index: 1;
position:absolute;
line-height:5px;
}
/* .shopcontent>p{
width:80%;
height:80%;
margin:auto;
display:flex;
justify-content: center;
line-height: 5px;
} */
.shopcontent>p:hover,.morecontent>p:hover{
color:blue;
}
.shop-dropdown:hover .shopcontent{
display:grid;
grid-template-columns:repeat(2,1fr);
}
.more-dropdown:hover .morecontent{
display:grid;
grid-template-columns:auto;
}
#cartcount,#favcount{
display:inline;
margin-left:5px;
width:20px;
color:white;
border-radius:10px;
padding:0px 4px 0px 4px;
background-color: #999999;
}
.navbox>div>img{
width:15%;
height:80%;
}
select{
border:none;
background-color:transparent;
font-size: medium;
font-weight: 400;
width:60px;
}
select~div{
display:flex;
align-items: center;
}
#buy h2{
text-align: center;
}
#buy{
width: 62%;
margin:auto;
}
#ol{
font-weight: bold;
font-size:25px;
}
#ul{
line-height: 23px;
font-weight: 400;
font-size: 16px;
margin-top: 10px;
margin-bottom: 10px;
}
.pera{
margin: auto;
justify-content: center;
width: 75%;
font-size: 13px;
color: #1327BE;
font-family: "Baloo Chettan 2",sans-serif;
text-align: center;
}
/* PINK VERTICAL LINE */
.pink{
margin: auto;
margin-top: 50px;
width: 70%;
}.pink2{
margin: auto;
margin-top: 0px;
width: 100%;
margin-bottom: 30px;
}
.pink3{
margin: auto;
margin-top: 50px;
width: 100%;
margin-bottom: 30px;
}
/* HOME SIGNUP TOY */
.Home-signup{
width: 70%;
display: flex;
justify-content: center;
margin: auto;
margin-top: 5px;
margin-bottom: 10px;
/* LOGO */
}.logo{
margin: auto;
display: flex;
justify-content: center;
}.logo img{
height: 90px;
width: 250px;
}
/* SOCIAL-MEDIA */
#container-20 a {
color: #1327BE;
}#container-20 > div{
width: 13%;
display: grid;
grid-template-columns: repeat(4,1fr);
grid-template-rows: repeat(auto);
margin: auto;
justify-content: space-evenly;
padding: 25px 0px 35px 0px;
}
/* DEATILS */
#container-21{
width: 78%;
display: grid;
grid-template-columns: repeat(5,1fr);
grid-template-rows: auto;
margin: auto;
color: #1327BE;
font-family: "Baloo Chettan 2",sans-serif;
gap : 30px ;
}#container-21 p{
margin: auto;
margin-left: 2xs;
}
.bottom{
margin: auto;
display: flex;
margin-top: 0px;
width: 90%;
}
.yellowbar{
height: 20px;
width: 4px;
position: relative;
background: #f3cf2c;
}
.pp{
margin: auto;
margin-right: 1000px;
padding-left: 8px;
}.small{
font-size: 13px;
color: #1327BE;
font-family: "Baloo Chettan 2",sans-serif;
margin: auto;
margin-top: 20px;
margin-left: -3px;
}.small >ol{
margin: auto;
margin-left: -40px;
margin-top: 10px;
}.small a >ol{
margin-left: -42px;
line-height: 10px;
color: #1327BE;
}.fa-angle-double-right{
margin: auto;
padding-right: 5px;
}
/*HOVER */
a>ol:hover{
color: #f3cf2c;
cursor:pointer
}.hov:hover{
color: #f3cf2c;
cursor:pointer
}
/* COPPY WRITE */
#container-22{
margin: auto;
display: flex;
margin-left: 190px;
font-size: 15px;
color: #1327BE;
font-family: "Baloo Chettan 2",sans-serif;
}
@media all and (min-width:80px) and (max-width:1000px) {
#buy{
width: 80%;
}
}
</style>
</head>
<body>
<!-- NAVBAR STarts here -->
<div class="navbox">
<div>
<img src="https://cdn1.storehippo.com/s/5f447e14285691dcc9bfcdf2/5fa00a8f29cc626bc128f080/webp/logo-for-website.png" />
<select onchange="gotoshop2()">
<option value="Shop">Shop</option></b>
<option id="selectshop" value="Shop">Shop</option>
<option value="Sell">Sell</option>
</select>
<div id="usersection" >
<div><i onclick="cartpage()" class="fa-solid fa-cart-shopping fa-2x"></i><div id="cartcount" class="cartcoutup"></div></div>
<div><i onclick="wishpage()"class="fa-solid fa-heart fa-2x"></i><div id="favcount"class="wishcoup"></div></div>
<div id="username"><b></b></div>
</div>
</div>
</div>
<div class="navbox2">
<div> <p onclick="gotohome()">Home</p></div>
<div class="shop-dropdown">
<p onclick="gotoshop()">Shop<span> </span><i class="fa-solid fa-angle-down"></i></p>
<div class="shopcontent">
<p onclick="gotoshop()"><b>Learn with fun</b></p>
<p onclick="gotoshop()">Educational Toys & games</p>
<p onclick="gotoshop()">Art& Craft</p>
<p onclick="gotoshop()">Building Blocks</p>
<p onclick="gotoshop()">Puzzles &board games</p>
<p onclick="gotoshop()"><b>Collectibles</b></p>
<p onclick="gotoshop()">Characters</p>
<p onclick="gotoshop()">Dolls & Doll houses</p>
<p onclick="gotoshop()">Cars</p>
<p onclick="gotoshop()">Action Figures</p>
<p onclick="gotoshop()"><b>Active play</b></p>
<p onclick="gotoshop()">Ride on toys</p>
<p onclick="gotoshop()">Outdoor Playsets</p>
<p onclick="gotoshop()"><b>Soft Plays</b></p>
<p onclick="gotoshop()">Soft Toys</p>
<p onclick="gotoshop()"><b>Baby &Pre-School</b></p>
<p onclick="gotoshop()"><b>Pretend Pla</b>y</p>
</div>
</div>
<div class=" more-dropdown">
<p>More<span> </span><i class="fa-solid fa-angle-down"></i></p>
<div class="morecontent">
<a href="donate.html"><p>Donate</p></a>
<a href="recycle.html"><p>Recycle</p></a>
<a href="aboutus.html"><p>About us</p></a>
<a href="piggy bank.html"><p>Piggy Bank</p></a>
<a href="contactus.html"><p>Contact Us</p></a>
<a href="shoppingguide.html"><p>Shopping guide</p></a>
</div>
</div>
<!-- search bar -->
<div id="searchfilter">
<input id="inputbar" type="text" placeholder="Search by product">
<button id="searchbutton">SEARCH</button>
</div>
<!-- search bar -->
</div>
<!-- <div></div> FOR SEARCH BAR -->
</div>
<div id="buy">
<h2>Buyback & Sell Policy</h2>
<ol id="ol" style="list-style-type: none;">
<li>Buyback:</li>
<ul id="ul" style="list-style-type:disc;">
<li>Buyback scheme is applicable only to products listed as buyback products. Products bought under this scheme can be sold back to Toy Marche after three (3) months of usage until three (3) years of usage from the date of purchase.</li>
<li>For selling a product back, a Buyback form needs to be filled which contains questions about the condition of the product. These questions should be answered accurately and real images need to be uploaded to show the exact condition of the product. In case the answers are not in sync with the actual condition of the product, Toy Marche will not approve the sale of the product and product will be returned to you; however, shipping and logistics costs, from Toy Marche warehouse to customer address, will have to be borne by You.</li>
<li>Only Piggy Bank points will be earned while selling the product back which can be used for buying any product or service available on the Toy Marche site.</li>
<li>Piggy bank points to be earned by selling the product are indicated as a range against each product. Same range will be applicable at the time of selling the product back.</li>
<li>The points awarded will be from the range defined against each product. Exact number of points given will be based on the condition of the product determined after verification checks. While the points will be in the range indicated, the exact points awarded are solely Toy Marche’s discretion.</li>
</ul>
<li>Sell Used Toys:</li>
<ul id="ul" style="list-style-type:disc;">
<li>Similar to buyback process, for selling a used toy, Sell Now form needs to be filled which contains questions about the condition of the product.</li>
<li>These questions should be answered accurately and real images need to be uploaded to show the exact condition of the product.</li>
<li>In case the answers are not an accurate description of the actual condition of the product, Toy Marche will provide points as per Recycle policy and notify via email.</li>
<li>In case, the assigned points are not acceptable, customer can ask for return of the product to them; however, shipping and logistics cost will have to be borne by customer from Toy Marche warehouse to customer address. This cost will be deducted from your Piggy Bank points.</li>
<li>Only Piggy Bank points will be earned while selling an old product which can be used for buying any product or service available on the Toy Marche site.</li>
<li>Piggy bank points to be earned by selling the product are indicated as a range against each product. Same range will be applicable at the time of selling the product back.</li>
</ul>
</ol>
</div>
<footer id="footer">
<!-- SIGNUP LOGO -->
<div class="pink"></div>
<!-- COMPANY LOGO -->
<div id="container-8" class="logo">
<a href=""> <img src="https://d2pyicwmjx3wii.cloudfront.net/s/5f447e14285691dcc9bfcdf2/5fa00a8f29cc626bc128f080/webp/logo-for-website-480x480.png" alt="logo"> </a>
</div>
<!-- PERAGRAPH -->
<div id="container-9" class="pera"> <p>A marketplace for all your toy needs! Shop your hearts out on your favorite brands. Buy toys for babies and preschoolers from the most preferred brands such as Fisher Price, Leapfrog, Hape, Giggles, Tomy, Funskool or shop building blocks for your little ones from Lego, Engino, Mega Bloks. Looking for educational and learning toys? There are plenty of options available from brands like Shifu, Smartivity, Explore, Skillofun, Hape, Ok Play to name a few. Huge range of collectible cars, dolls, action figures for collectors from brands like Hot Wheels, Siku, Barbie, Hasbro, Mirada, Funskool, Mattel. Keep your super active little ones busy with our collection of outdoor playsets and ride-on toys. Don't forget to check out our collection of stuffed animals and soft toys, perfect gifts regardless of age. </p>
<p>What makes us unique is that you sell back the toys when you don't need them anymore and earn piggy bank points to shop more toys! Teach your kids to manage their digital piggy banks. Encourage them to care for others by donating toys and earn more piggy bank points. Get them to care for environment by encouraging to give broken toys for recycling and earn piggy bank points. Make them responsible!</p>
</div>
<!-- SOCIALMEDIA HANDELS -->
<div id="container-20" >
<div>
<a href="https://www.facebook.com/toymarche/?view_public_for=101667941917013" target="_blank"><i class="fa-brands fa-facebook fa-2x" ></i></a>
<a href="https://www.instagram.com/toymarcheindia/" target="_blank"><i class="fa-brands fa-instagram fa-2x"></i></a>
<a href="https://www.youtube.com/channel/UCMuGKjgzL-csAfI0_jbx0wg/featured" target="_blank"><i class="fa-brands fa-youtube fa-2x"></i></a>
<a href="https://in.pinterest.com/toymarche/" target="_blank"><i class="fa-brands fa-pinterest fa-2x"></i></a>
</div>
</div>
<!-- DEATILS -->
<div id="container-21">
<!-- CONTACT INFORMATION -->
<div class="bottom">
<div class="yellowbar">
<p class="pp"> CONTACT</p>
</div>
<div class="small">
<ol><i class="fa-solid fa-phone fa-xs hov"></i> +918010332222</ol>
<ol><i class="fa-solid fa-envelope fa-xs hov"></i> toymarche@toymarche.com</ol>
</div>
</div>
<!-- POLICES -->
<div class="bottom">
<div class="yellowbar">
<p class="pp"> POLICIES</p>
</div>
<div class="small">
<a href="terms.html" target=""><ol> <i class="fa fa-angle-double-right fa-2xs"></i>Terms of Sale</ol></a>
<a href="Buyback&sell.html" target=""><ol> <i class="fa fa-angle-double-right fa-2xs"></i>Buyback & Sell Policy</ol></a>
</a><a href="returnpolicy.html" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Returns, Cancellation & Refunds Policy</ol></a>
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Payment Policy</ol></a>
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Shipping Policy</ol></a>
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Terms of Use</ol></a>
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Privacy Policy</ol></a>
</div>
</div>
<!-- INFORMATION -->
<div class="bottom">
<div class="yellowbar">
<p class="pp"> INFORMATION </p>
</div>
<div class="small">
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>About Us</ol></a>
<a href="contactus.html" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Contact us</ol></a>
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Blog</ol></a>
</div>
</div>
<!-- ACCOUNT -->
<div class="bottom">
<div class="yellowbar">
<p class="pp"> ACCOUNT</p>
</div>
<div class="small">
<a href="test.html" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>My Account</ol></a>
<a href="" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Wishlist</ol></a>
<a href="piggy bank.html" target=""><ol><i class="fa fa-angle-double-right fa-2xs"></i>Piggy Bank</ol></a>
</div>
</div>
<!-- ADDRESS -->
<div class="bottom">
<div class="yellowbar">
<p class="pp"> ADDRESS</p>
</div>
<div class="small">
<ol><i class="fa fa-angle-double-right fa-2xs"></i>Toy Marche</ol>
<ol><i class="fa fa-angle-double-right fa-2xs"></i>Registered Address: Greenwood City, Block-A, Sector-45</ol>
<ol><i class="fa fa-angle-double-right fa-2xs"></i>Gurgaon</ol>
<ol><i class="fa fa-angle-double-right fa-2xs"></i>Haryana 122001</ol>
<ol><i class="fa fa-angle-double-right fa-2xs"></i>IN</ol>
</div>
</div>
</div>
<!-- COPYRIGHT -->
<div id="container-22">
<p>Copyright©<a class="hov">Toy March</a></p>
</div>
</footer>
</body>
</html>
<script src="Buyback&sell.js">
</script>