-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
722 lines (685 loc) · 25.4 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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
<!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="https://kit.fontawesome.com/a1a5ed085a.js"
crossorigin="anonymous"
></script>
<title>BestBuy</title>
<link rel="stylesheet" href="/style/index.css" />
</head>
<body>
<!-- navBar -->
<div class="navbar">
<img
class="logo"
src="https://pisces.bbystatic.com/image2/BestBuy_US/Gallery/BestBuy_Logo_2020-190616.png;maxHeight=80;maxWidth=136"
alt=""
/>
<div class="menu">
<i class="fa-solid fa-bars fa-xl"></i>
<h3>MENU</h3>
</div>
<div class="search">
<input class="search" type="text" placeholder="Search Best Buy" />
<i class="fa-solid mag fa-magnifying-glass fa-lg"></i>
</div>
<div class="last">
<div class="aiea">
<i class="fa-solid tag fa-tag fa-lg"></i>
<h3>Aiea</h3>
</div>
<a href="/cart.html">
<div class="cart">
<i class="fa-solid cart-log fa-cart-shopping fa-lg"></i>
<h3>Cart</h3>
</div>
</a>
</div>
<!-- navbar end -->
</div>
<div class="below-navbar">
<div>Top Deal</div>
<div><a href="/dealoftheDay.html"> Deal of the day</a></div>
<div>Totaltech Membership</div>
<div>Credit Cards</div>
<div>Gift Cards</div>
<div>Gift Ideas</div>
<div>Health & Wellness</div>
<div>
<select name="" id="">
<option value="More">More</option>
</select>
</div>
<div>
<i class="fa-solid fa-user"></i>
<select name="" id="">
<option value="More">Account</option>
<option value=""> Sign In</option>
</select>
</div>
<div>
<select name="" id="">
<option value="More">Recently Viewed</option>
</select>
</div>
<div>
<!-- <select name="" id="">
<option value="More">Order Status</option>
</select> -->
<a href="/signup.html"><p>Sign Up</p></a>
</div>
<div>
<!-- <select name="" id="">
<option value="More">Saved Items</option>
</select> -->
<a href="/login.html"><p>Login</p></a>
</div>
</div>
<!-- 3rd part -->
<div class="thirdrdpart">
<div>
<img
src="https://i.postimg.cc/k5mgxkBL/Screenshot-2022-03-26-at-6-35-56-PM.png"
alt=""
/>
</div>
<div>
<div>
<h1>Today's popular picks</h1>
<p>based on what's trending</p>
<div class="trend">
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6401/6401735_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
<div>
<img
class="earphone"
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6471/6471731_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6464/6464203_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<p>$399.99</p>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6429/6429440_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
</div>
</div>
<div>
<h2><span style="background-color: red">Deal</span> of the day</h2>
<div style="display: flex">
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6481/6481067_sd.jpg;maxHeight=300;maxWidth=300"
alt=""
/>
<div>
<p style="color: blue">
LG - gram 16” WQXGA IPS Laptop Intel Evo Platform 11th Gen Intel
Core i7 16GB RAM 1TB NVMe SSD - Black
</p>
<p style="display: inline">$1,2799.99</p>
<p style="text-decoration: line-through">$1,749</p>
</div>
</div>
</div>
</div>
</div>
<!-- forthpart -->
<div class="forthpart">
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-65963-confident-210831-c34d2a74-8b79-41cd-8161-b9987666f7d6.png;maxHeight=72;maxWidth=72"
alt=""
/>
<div>
<h3>Shop safely and confidently.</h3>
<p>See our safety procedures</p>
</div>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-65963-confident-210831-c34d2a74-8b79-41cd-8161-b9987666f7d6.png;maxHeight=72;maxWidth=72"
alt=""
/>
<div>
<h3>Shop safely and confidently.</h3>
<p>See our safety procedures</p>
</div>
</div>
</div>
<!-- fifthpart -->
<div class="fifthpart">
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/Gallery/gl-37875-app-curbside-vpe_der-149659.png;maxHeight=144;maxWidth=144"
alt=""
/>
<div>
<h3>Ready in one hour</h3>
<p>with Store or Curbside Pickup.</p>
</div>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/Gallery/gl-app-vpe-freeshippin_der1-206852.png;maxHeight=144;maxWidth=144"
alt=""
/>
<div>
<h3>Free next-day delivery</h3>
<p>on thousands of items.</p>
</div>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/Gallery/gl-app-vpe-freeshippin_der1-206852.png;maxHeight=144;maxWidth=144"
alt=""
/>
<div>
<h3>Same-day delivery.</h3>
<p>Order by 3 p.m., get it by 8 p.m.</p>
<p style="font-size: 12px">Order by 2 p.m. Sunday.</p>
</div>
</div>
</div>
<!-- sixthpart -->
<div class="img-contaber">
<div>
<img
src="https://i.postimg.cc/wvSC63jR/Screenshot-2022-03-26-at-10-25-38-PM.png"
alt=""
/>
</div>
<div><img src="" alt="" /></div>
</div>
<!-- seventh-part -->
<div class="seventh-part">
<div class="one">
<h3>We’re driven by our impact</h3>
<div class="row1">
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71672-flex-mot-whm-2202128-12a34105-9dd2-4cf1-aefb-04f2766677a7.png;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Supporting gender equality</p>
</div>
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71672-flex-ttc-2202128-2b777e1c-15fe-4e5b-912f-57c2419188ba.png;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Supporting gender equality</p>
</div>
</div>
<!-- -->
<div class="row1">
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71672-flex-sustain-2202128-69c383d9-a5cb-4ec9-8765-f55060bc65e3.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Supporting gender equality</p>
</div>
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71385-flex-mot-220214-4753d2aa-41af-45f1-b155-79d8879b0e4f.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Supporting gender equality</p>
</div>
</div>
</div>
<div class="two">
<h3>Gear up for spring in the outdoors</h3>
<div class="row1">
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71987-flex-power-220314-7cfc7e7f-4dcf-4aa1-a5d6-118e27d49877.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Power to go off the grid</p>
</div>
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71987-flex-camera-220314-5d4bb26e-a8e8-448c-88ad-8666156e67b7.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Capture the view</p>
</div>
</div>
<!-- -->
<div class="row1">
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71987-flex-speaker-220314-3c53ec19-08d8-4fd4-a084-2c18abc15ed7.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Take the music with you</p>
</div>
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71987-flex-bike-220314-8f059751-4485-4996-9b62-87d679c071c4.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Sustainable transportation</p>
</div>
</div>
</div>
<div class="three">
<h3>Create an entertainment hub</h3>
<div class="row1">
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71988-flex-tv-220314-70170d91-9dd9-4088-9ead-476dbd82a8ec.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Game-day and movie-night </p>
</div>
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71988-flex-vac-220314-83a131ec-0f9e-4ced-be11-486a802ef887.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Quick, easy cleanups make </p>
</div>
</div>
<!-- -->
<div class="row1">
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71988-flex-games-220314-b9c03cbd-9e3a-41f6-9fc6-206474a3581f.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Create the ultimate game room</p>
</div>
<div>
<img
class="img-1"
src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/GL-71988-flex-heater-220314-689ea111-713a-4bda-95fa-f96e7e63a31d.jpg;maxHeight=432;maxWidth=432"
alt=""
/>
<p>Take the party outdoors</p>
</div>
</div>
</div>
</div>
</div>
<!-- ----------------------------------------------------------- -->
<div class="eight-part">
<h2>Our featured offers</h2>
<hr>
<div class="seven-inner">
<div class="seven-row">
<div>
<img src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/mmt-526374-lg-tv-pol_der-a0cf72f4-d500-4f14-9a62-e9e60582e413.jpg;maxHeight=504;maxWidth=740" alt="">
<h3>Save up to $300 on select LG TVs.</h3>
</div>
<div>
<img src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/pol_6418601-macbook-pro-mmt-412702-0510-der-a9dbcf29-0a5b-4d4f-8907-21259a58825e.jpg;maxHeight=504;maxWidth=740" alt="">
<h3>MacBook Pro Save up to $200 on select models.</h3>
<p class="minimum">Minimum savings is $150.</p>
</div>
<div>
<img src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/pol_MMT-516854_der-2f35847b-0eda-4f62-9982-c97dee47ade2.jpg;maxHeight=504;maxWidth=740" alt="">
<h3>Create the kitchen and laundry room of your dreams.</h3>
</div>
</div>
<!-- -----------------2nd--------------------------------- -->
<hr>
<div class="seven-row" style="margin-left: 30px;">
<div>
<img src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/pol_MMT-528302_der-e9c6c87a-39e3-41cb-a824-c2c5ca6f248a.jpg;maxHeight=504;maxWidth=740" alt="">
<h3>Super73 electric bikes.</h3>
<p class="seven-p">Check out an assortment of rugged, stylish e-bikes that are ready for the street or the trail.</p>
</div>
<div>
<img src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/mmt-524290-headphones-pol_der-cfe09529-eb43-420e-80d5-e5e8074fad1e.jpg;maxHeight=504;maxWidth=740" alt="">
<h3>Save up to $300 on select LG TVs.</h3>
<p class="seven-p">Cut out distractions - the airplane roar, a crying baby - so you can relax with your favorite music, audiobook or podcast.</p>
</div>
<div>
<img src="https://pisces.bbystatic.com/image2/BestBuy_US/dam/pol-yardbird-sol91618-a422b3be-8a4c-4c9d-980c-8fc459f5b624.jpg;maxHeight=504;maxWidth=740" alt="">
<h3>Save up to $300 on select LG TVs.</h3>
<p class="seven-p">Exceptionally comfortable, stylish and sustainable. to Built to last with the highest quality materials.</p>
<p class="minimum pin" >Available in Southern California only. For customers outside of this market, please visit yardbird.com.</p>
</div>
</div>
</div>
</div>
<!-- -----------------------You may like --------------------------->
<h2>You may also like</h2>
<hr>
<div class="maylike">
<!-- //////////// -->
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6443/6443300_sd.jpg;maxHeight=272;maxWidth=400"
alt=""
/>
<p>Apple - iPhone 13 5G 512GB - Blue (Verizon)"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p class="price">$30.55</p>
<p class="month">for 36 mos.</p>
</div>
<div>
<img
class="earphone"
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6341/6341581_sd.jpg;maxHeight=272;maxWidth=400"
alt=""
/>
<p>Apple - iPhone 11 64GB - Black (Verizon)</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p class="price">$13.88/mo</p>
<p class="month">for 36 mos.</p>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6443/6443069_sd.jpg;maxHeight=272;maxWidth=400"
alt=""
/>
<p>Apple - iPhone 13 5G 128GB - Blue (Sprint)</p>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<p class="price">$30.55/mo</p>
<p class="month">for 36 mos.</p>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6009/6009897_sd.jpg;maxHeight=272;maxWidth=400"
alt=""
/>
<p>Apple - iPhone 13 Pro Max 5G 128GB - Sierra Blue (Verizon)</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p class="price">$33.34/mo</p>
<p class="month">for 36 mos.</p>
</div>
<div>
<img
class="earphone"
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6443/6443337_sd.jpg;maxHeight=272;maxWidth=400"
alt=""
/>
<p>Apple - iPhone 12 5G 64GB - Black (Verizon)</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p class="price">$20/mo</p>
<p class="month">for 36 mos.</p>
</div>
</div>
</div>
<div>
<!-- //////////////tranding deals////////////////////// -->
<div class="trending">
<h2>Trending deals </h2>
<hr>
<div class="trend-2">
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6401/6401735_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
<div>
<img
class="earphone"
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6471/6471731_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6464/6464203_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<i class="fa-solid str fa-star"></i>
<p>$399.99</p>
</div>
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6429/6429440_sd.jpg;maxHeight=250;maxWidth=250"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
<!-- -->
<div>
<img
src="https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6386/6386391_sd.jpg;maxHeight=272;maxWidth=400"
alt=""
/>
<p>Samsung -55"</p>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<p>$399.99</p>
</div>
</div>
</div>
<!-- ///////////////////////////// two box///////////////// -->
<div class="two-box">
<div>
<img src="https://i.postimg.cc/MZffgC2M/Screenshot-2022-03-27-at-4-07-35-PM.png" alt="">
</div>
<div>
<img src="https://i.postimg.cc/C5b1dVSc/Screenshot-2022-03-27-at-4-07-47-PM.png" alt="">
</div>
</div>
<div class="row-img">
<img src="https://i.postimg.cc/d0Q4BqfT/Screenshot-2022-03-27-at-4-13-10-PM.png" alt="">
</div>
<!-- -------------------------footer---------------------------------- -->
<div class="footer">
<div class="footer-first">
<div>
<div>
<img class="footer-icon" src="https://i.postimg.cc/26vppQQZ/Screenshot-2022-03-27-at-4-45-41-PM.png" alt="">
</div>
<p>Visit our Support Center</p>
</div>
<div>
<div>
<img class="footer-icon" src="https://i.postimg.cc/zG8089h7/Screenshot-2022-03-27-at-4-49-44-PM.png" alt="">
</div>
<p>Check your Order Status</p>
</div>
<div>
<div>
<img class="footer-icon" src="https://i.postimg.cc/50BShgtT/Screenshot-2022-03-27-at-4-50-46-PM.png" alt="">
</div>
<p>Shipping, Delivery & Store Pickup</p>
</div>
<div>
<div>
<img class="footer-icon" src="https://i.postimg.cc/Qd68bZkn/Screenshot-2022-03-27-at-4-51-32-PM.png" alt="">
</div>
<p>Returns & Exchanges</p>
</div>
<div>
<div>
<img class="footer-icon" src="https://i.postimg.cc/C1bp93k0/Screenshot-2022-03-27-at-4-52-17-PM.png" alt="">
</div>
<p>Price Match Guarantee</p>
</div>
</div>
<hr>
<div class="footer-second-row">
<div class="first">
<div>
<h3>Order & Purchases</h3>
<p>Check Order Status</p>
<p>Returns & Exchanges</p>
<p>Price Match Guarantee</p>
<p>Product Recalls</p>
<p>Trade-In Program</p>
<p>Gift Cards</p>
<h3>Payment Options</h3>
<p>My Best Buy® Credit Card</p>
<p>Pay Your Bill at Citibank</p>
<p>Lease to Own</p>
</div>
<div>
<h3>Support & Services</h3>
<p>Visit our Support Center</p>
<p>Shop with an Expert</p>
<p>Schedule a Service</p>
<p>Manage an Appointment</p>
<p>Protection & Support Plans</p>
<p>Haul Away & Recycling</p>
<p>Contact Us</p>
<h3>Rewards & Membership</h3>
<p>Best Buy Totaltech</p>
<p>My Best Buy</p>
<p>View Points & Certificates</p>
<p>Member Offers</p>
</div>
<div>
<h3>Partnerships</h3>
<p>Affiliate Program</p>
<p>Advertise with Us</p>
<p>Developers</p>
<p>Best Buy Health</p>
<p>Best Buy Education</p>
<p>Best Buy Business</p>
<h3>About Best Buy</h3>
<p>Corporate Information</p>
<p>Careers</p>
<p>Corporate Responsibility & Sustainability</p>
<p>Discover & Learn</p>
</div>
</div>
<!-- 2nd -->
<div class="second">
<p>Sign in or Create Account</p>
<hr>
<h3>Get the latest deals and more.</h3>
<div class="foot-sercc">
<input type="text">
<button>Sign Up</button>
</div>
<hr>
<div class="app">
<img src="https://i.postimg.cc/x8Q89Y6R/Screenshot-2022-03-27-at-6-10-31-PM.png" alt="">
<div>
<h2>Best Buy app</h2>
<p>Learn more ›</p>
</div>
</div>
<hr>
<div class="foot-icon">
<i class="fa-brands fa-facebook fa-3x"></i>
<i class="fa-brands fa-twitter fa-3x"></i>
<i class="fa-brands fa-instagram fa-3x"></i>
<i class="fa-brands fa-pinterest fa-3x"></i>
<i class="fa-brands fa-youtube fa-3x"></i>
</div>
<hr>
<p>Forums, blogs & more</p>
</div>
</div>
<div class="footer-last">
<div>
<p>How was your experience? <span class="blue">Give feedback about our website </span></p>
</div>
<div class="flex">
<p class="blue">Mobile site</p>
<p class="blue">Best Buy Canada</p>
</div>
</div>
<hr>
<div class="last-link">
<p class="blue">Accessibility</p>
<p class="blue">Terms & Conditions</p>
<p class="blue">Privacy</p>
<p class="blue">Interest-Based Ads</p>
<p class="blue">California Privacy Rights</p>
<p class="blue">Do Not Sell My Personal Information</p>
<p class="blue">California Supply Chain Transparency Act</p>
</div>
<p>In-store pricing may vary. Prices and offers are subject to change. © 2022 Best Buy. All rights reserved. BEST BUY, the BEST BUY logo, the tag design, and MY BEST BUY are trademarks of Best Buy and its affiliated companies.</p>
</div>
</body>
</html>