-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1274 lines (1211 loc) · 58.2 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
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>Microsoft</title>
<link rel="stylesheet" href="./swiper/swiper-bundle.min.css">
<link
rel="stylesheet"
href="./bootstrap/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./fontawesome-free-5.15.4-web/fontawesome-free-5.15.4-web/css/all.min.css">
<link rel="stylesheet" href="./css/main.css" />
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!--Start Bootstrap project By Rashin-->
<div class="wrapper">
<nav class="navbar navbar-expand-md dropdown container-fluid">
<a href="#" class="navbar-brand ms-3"><img src="./images/RE1Mu3b" alt=""></a>
<a href="#" class="navbar navbar-expand-xl mx-1 fw-bolder text-dark fs-18" style="font-size: 14px;">Surface</a>
<div class="dropdown position-static">
<a class="btn btn-secondary dropdown-toggle bg-light border-light text-dark hover-shadow thumbnail" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false" id="navbarDropdown">
Computers
</a>
<!-- Dropdown menu -->
<div class="dropdown-menu w-100 mt-0" aria-labelledby="navbarDropdown" style="
border-top-left-radius: 0;
border-top-right-radius: 0;
">
<div class="container">
<div class="row my-4">
<div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">2-in-1 PCs</a>
<a href="" class="list-group-item list-group-item-action">NEW surface pro 9</a>
<a href="" class="list-group-item list-group-item-action">surface pro 7</a>
<a href="" class="list-group-item list-group-item-action">surface Go 3</a>
<a href="" class="list-group-item list-group-item-action">Explore all 2-in-1 PCs</a>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">Laptops</a>
<a href="" class="list-group-item list-group-item-action">NEW surface laptop 4</a>
<a href="" class="list-group-item list-group-item-action">surface laptop Studio</a>
<a href="" class="list-group-item list-group-item-action">surface laptop GO 2</a>
<a href="" class="list-group-item list-group-item-action">Explore all laptops</a>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-3 mb-md-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">Dual screen</a>
<a href="" class="list-group-item list-group-item-action">surface Due 2</a>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">All-in-one</a>
<a href="" class="list-group-item list-group-item-action">NEW surface Studio 2+</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="dropdown position-static">
<a class="btn btn-secondary dropdown-toggle bg-light border-light text-dark" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"id="navbarDropdown">
Computers for Business
</a>
<!-- Dropdown menu -->
<div class="dropdown-menu w-100 mt-0" aria-labelledby="navbarDropdown" style="
border-top-left-radius: 0;
border-top-right-radius: 0;
">
<div class="container">
<div class="row my-4">
<div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">2-in-1 Tablets</a>
<a href="" class="list-group-item list-group-item-action">NEW surface pro 9 for Business</a>
<a href="" class="list-group-item list-group-item-action">surface pro 8 for business</a>
<a href="" class="list-group-item list-group-item-action">surface GO 3 for business</a>
<a href="" class="list-group-item list-group-item-action">surface pro 7 + for business</a>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">Laptops</a>
<a href="" class="list-group-item list-group-item-action">Surface laptop 5 for business</a>
<a href="" class="list-group-item list-group-item-action">surface laptop Studio for business</a>
<a href="" class="list-group-item list-group-item-action">surface laptop Go 2 for business</a>
<a href="" class="list-group-item list-group-item-action">surface laptop SE for Education</a>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-3 mb-md-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">Small and Large screens</a>
<a href="" class="list-group-item list-group-item-action">Studio Duo 2 for business</a>
<a href="" class="list-group-item list-group-item-action">New surface Studio 2 + for business</a>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">Accessories</a>
<a href="" class="list-group-item list-group-item-action">All Accessories</a>
<a href="" class="list-group-item list-group-item-action">surface headphones 2+</a>
<a href="" class="list-group-item list-group-item-action">Teams Accessories</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a class="btn btn-secondary dropdown-toggle bg-light border-light text-dark" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"id="dropdownMenuButton1" >
Accessories
</a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="#">Surface pro accessories</a></li>
<li><a class="dropdown-item" href="#">surface pro 7+ accessories</a></li>
<li><a class="dropdown-item" href="#">surface GO accessories</a></li>
<li><a class="dropdown-item" href="#">surface laptop accessories</a></li>
<li><a class="dropdown-item" href="#">surface Studio accessories</a></li>
<li><a class="dropdown-item" href="#"> All surface accessories</a></li>
</ul>
</div>
<div class="dropdown">
<a class="btn btn-secondary dropdown-toggle bg-light border-light text-dark" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"id="dropdownMenuButton1" >
Shop now
</a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="#">Surface bundeles</a></li>
<li><a class="dropdown-item" href="#">All surface devices</a></li>
<li><a class="dropdown-item" href="#">Where to buy</a></li>
</ul>
</div>
<a href="#" class="navbar mx-1" data-bs-toggle="modal" data-bs-target="#myModal">support</a>
<!-- The Modal -->
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Warning !</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="spinner-grow text-danger"></div>
Please First sign in
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<a href="#" class="navbar border mx-2 p-2">SHOP DEALS</a>
<button class="navbar-toggler me-3" type="button" data-bs-toggle="collapse" data-bs-target="#btn">
<i class="bx bx-menu bx-md"></i>
</button>
<div class=" collapse navbar-collapse" id="btn">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<div class="dropdown position-static">
<a class="btn btn-secondary dropdown-toggle bg-light border-light text-dark hover-shadow thumbnail" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false" id="navbarDropdown">
All Microsoft
</a>
<!-- Dropdown menu -->
<div class="dropdown-menu w-100 mt-0" aria-labelledby="navbarDropdown" style="
border-top-left-radius: 0;
border-top-right-radius: 0;
">
<div class="container">
<div class="row my-4">
<div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">software</a>
<a href="" class="list-group-item list-group-item-action">Windows Apps</a>
<a href="" class="list-group-item list-group-item-action">oneDrive</a>
<a href="" class="list-group-item list-group-item-action">Skype</a>
<a href="" class="list-group-item list-group-item-action">OneNote</a>
<a href="" class="list-group-item list-group-item-action">Microsoft Teams</a>
<a href="" class="list-group-item list-group-item-action">Microsoft Edge</a>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">PCs & Devices</a>
<a href="" class="list-group-item list-group-item-action">Computers</a>
<a href="" class="list-group-item list-group-item-action">Cshop Xbox</a>
<a href="" class="list-group-item list-group-item-action">Accessories</a>
<a href="" class="list-group-item list-group-item-action">phones</a>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-3 mb-md-0">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">Entertainment</a>
<a href="" class="list-group-item list-group-item-action">Xbox Game pass Ultimate</a>
<a href="" class="list-group-item list-group-item-action">Pc Game Pass</a>
<a href="" class="list-group-item list-group-item-action">Xbox games</a>
<a href="" class="list-group-item list-group-item-action">Pc games</a>
<a href="" class="list-group-item list-group-item-action">Windows digital games</a>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="list-group list-group-flush">
<a href="" class="list-group-item list-group-item-action">developer & IT</a>
<a href="" class="list-group-item list-group-item-action">Azure</a>
<a href="" class="list-group-item list-group-item-action">Developer center</a>
<a href="" class="list-group-item list-group-item-action">Documention</a>
<a href="" class="list-group-item list-group-item-action">Microsoft Learn</a>
<a href="" class="list-group-item list-group-item-action">Azure Marketplace</a>
<a href="" class="list-group-item list-group-item-action">Visual Studio</a>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<div class="dropdown">
<a href="#"class="btn btn-secondary dropdown-toggle bg-light border-light text-dark fs-10 mx-1" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"id="dropdownMenuButton1">Sign in<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-person mx-2" viewBox="0 0 16 16">
<path d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z"/>
</svg></a>
<div class="dropdown-menu"aria-labelledby="dropdownMenuButton1">
<form class="px-5 py-3">
<div class="form-group">
<label for="exampleDropdownFormEmail1">Email address</label>
<input type="email" class="form-control" id="exampleDropdownFormEmail1" placeholder="email@example.com">
</div>
<div class="form-group">
<label for="exampleDropdownFormPassword1">Password</label>
<input type="password" class="form-control" id="exampleDropdownFormPassword1" placeholder="Password">
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="dropdownCheck">
<label class="form-check-label" for="dropdownCheck">
Remember me
</label>
</div>
<button type="submit" class="btn btn-primary">Sign in</button>
</form>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">New around here? Sign up</a>
<a class="dropdown-item" href="#">Forgot password?</a>
</div>
</div>
<li class="nav-item ">
<a href="3" class="nav-link fs-10 mx-1"data-bs-toggle="modal" data-bs-target="#staticBackdrop">search<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-search mx-1" viewBox="0 0 16 16">
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
</svg></a>
<!-- Modal -->
<div class="modal fade w-100" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Search Bar</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="input-group ">
<input type="search" placeholder="Search"class="form-control rounded" aria-label="Search" aria-describedby="search-addon" />
<button type="button" class="btn btn-outline-primary">search</button>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a href="./shopping.html" class="nav-link ml-4 fs-10 mx-1">Cart<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-bag mx-1" viewBox="0 0 16 16">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"/>
</svg></a>
</li>
</ul>
</div>
</nav>
<div class="btn-group">
<button type="button" class="btn btn-light dropdown-toggle fw-bolder border-light" data-bs-toggle="dropdown" aria-expanded="false">
Surface
</button>
<ul class="dropdown-menu" style="width: 20rem;">
<li><a class="dropdown-item" href="#">Home</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Computers</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Accessories</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">support</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Shop now</a></li>
</ul>
</div>
<div class="alarm">
<div class="alert ">
<strong>Get help shopping for a Surface !</strong><a href="#">Book a free online appointment with a Microsoft Store associate ></a>
</div>
</div>
<div class="slider">
<!-- Carousel -->
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/Highlight-Surface-Laptop-5-for-Business-Platinum-13in-15in-CON-01_VP5-1920x720.jpeg" alt="Los Angeles" class="d-block w-100 ">
<h1 class="overlay-text d-lg-none d-md-none d-sm-none d-xs-none d-xl-block">Save up to $200 on new Surface Laptop 5</h1>
<h4 class="overlay-text d-lg-none d-md-none d-sm-none d-xs-none d-xl-block">Sophisticated style and multitasking speed powered by 12th <br> Gen Intel® Core </h4>
<a href="#"class="overlay-text d-lg-none d-md-none d-sm-none d-xs-none d-xl-block">Shop Surface Laptop 5 ></a>
</div>
<div class="carousel-item">
<img src="./images/Highlight-Surface-Pro-9-Surface-Pro-Keyboard_VP5-1920x720.webp" alt="Los Angeles" class="d-block w-100">
<h1 class="overlay-text d-lg-none d-md-none d-sm-none d-xs-none d-xl-block">Save up to $200 on new Surface Pro 9</h1>
<h4 class="overlay-text d-lg-none d-md-none d-sm-none d-xs-none d-xl-block">The tablet flexibility you want and the laptop <br> performance you need — all in one ultra-portable device</h4>
<a href="#"class="overlay-text d-lg-none d-md-none d-sm-none d-xs-none d-xl-block">Shop Surface pro 9 ></a>
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
</div>
<div class="row mt-5 m-0 text-center">
<div class="col-10 offset-1 ">
<figure class="figure m-5 ">
<img src="./images/Panel_Footer_Icons_Protect.webp" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption "><a href="#">Surface Bundles</a></figcaption>
</figure>
<figure class="figure m-5 ">
<img src="./images/gldn-LL-surface-laptop-pro-120x120.webp" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption justify-content-center text-center"><a href="#">Certified Refurbished</a></figcaption>
</figure>
<figure class="figure m-5 ">
<img src="./images/gldn-Quick-Link-Icon-80x80-Keyboard-Mouse.webp" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption justify-content-center text-center"><a href="#">Surface Accessories</a></figcaption>
</figure>
<figure class="figure m-5 ">
<img src="./images/QuickLink-Surface-with-Kickstand-80x80.webp" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption justify-content-center text-center"><a href="#">Surface for Business Deals</a></figcaption>
</figure>
</div>
</div>
<div class="cards d-flex flex-row flex-wrap justify-content-center p-2 gap-xl-4 gap-lg-1 gap-md-2 ">
<div class="card mb-4 " >
<img src="./images/gldn-CP-surface-laptop-4-multitasking-1668x940-1.webp" class="card-img-top" alt="...">
<a class="btn btn-warning m-3 btn btn-primary" data-bs-toggle="tooltip" title="SPECIAL OFFER!">Save up to $646</a>
<div class="card-body">
<h2 class="card-title">Surface Laptop 4</h2>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a class="btn btn-primary"id="toastbtn">Shop surface Laptop 4 ></a>
<div class="toast">
<div class="toast-header">
<strong class="me-auto">Warning!</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast"></button>
</div>
<div class="toast-body">
<p>Please first Sign in </p>
<div class="spinner-border text-primary"></div>
</div>
</div>
</div>
</div>
<div class="card mb-4">
<img src="./images/Content-Card-Surface-Pro-8-Graphite.webp" class="card-img-top" alt="...">
<a class="btn btn-warning m-3 btn btn-primary" data-bs-toggle="tooltip" title="SPECIAL OFFER!">Save up to $500</a>
<div class="card-body">
<h2 class="card-title">Surface Pro 8</h2>
<p class="card-text">Work, play, and create with a touchscreen device that combines the power of a laptop with the flexibility of a tablet.</p>
<a href="#" class="btn btn-primary">hop surface Pro 8 ></a>
</div>
</div>
<div class="card mb-4">
<img src="./images/Content-Card-Surface-Laptop-Go-2-Sage.webp" class="card-img-top" alt="...">
<a class="btn btn-warning m-3 btn btn-primary" data-bs-toggle="tooltip" title="SPECIAL OFFER!">Save up to $150</a>
<div class="card-body">
<h2 class="card-title">Surface Laptop Go 2</h2>
<p class="card-text">Work and play anywhere with a vibrant touchscreen, comfortable keyboard, and 11th Gen Intel, all in a sleek, lightweight design.</p>
<a class="btn btn-primary">Shop Surface Laptop Go 2 ></a>
</div>
</div>
<div class="card mb-4" >
<img src="./images/gldn-CP-Surface-Family-1668x940.webp" class="card-img-top" alt="...">
<div class="card-body">
<h2 class="card-title">Up to 35% off Certified Refurbished Surface</h2>
<p class="card-text">Our program offers the opportunity to own devices that are put through a rigorous certification process, tested to confirm they’re working properly, and inspected for hardware and cosmetic quality—all at a discounted price.</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div>
<div class="card mb-4" >
<img src="./images/gldn-CP-Sur20-Pro7-Plat-Black-TC-Angle-BnrCntrl.webp" class="card-img-top" alt="...">
<div class="card-body">
<a class="btn btn-warning m-3 btn btn-primary" data-bs-toggle="tooltip" title="SPECIAL OFFER!">Save up to $330</a>
<h2 class="card-title">Surface Pro 7+ and Surface Pro Type Cover bundle</h2>
<p class="card-text">Save big on performance and portability when you bundle select Surface Pro 7+ with Surface Pro Type Cover.
</p>
<a href="#" class="btn btn-primary">shop surface Laptop pro 7 + Bundle ></a>
</div>
</div>
<div class="card mb-4" >
<img src="./images/Content-Card-Bundles-Surface-Pro-8-Keyboard.webp" class="card-img-top" alt="...">
<a class="btn btn-warning m-3 btn btn-primary" data-bs-toggle="tooltip" title="SPECIAL OFFER!">Save up to $439.99</a>
<div class="card-body">
<h2 class="card-title">Surface Pro 8 + Surface Pro Keyboard Bundle</h2>
<p class="card-text">Unlock more possibilities than ever when you bundle the most powerful Pro yet with a Surface Pro Keyboard.</p>
<a href="#" class="btn btn-primary">Shop Surface Pro 8 Bundle ></a>
</div>
</div>
</div>
<div class="cards2 d-flex flex-row flex-wrap p-4 justify-content-evenly">
<div class="card col-6">
<img class="card-img-top" src="./images/CP-01-Family-BnrCntrl.webp" alt="Card image">
<div class="card-body">
<h4 class="card-title">Trade and Upgrade</h4>
<p class="card-text">Buy a qualifying Surface and get cash back when you trade in an eligible used device.</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div>
<div class="card col-6">
<img class="card-img-top" src="./images/Content-Card-Bundles-Surface-Laptop-Studio-Essentials.webp" alt="Card image">
<div class="card-body">
<h4 class="card-title">Bundle and save on Surface</h4>
<p class="card-text">Get a great deal when you bundle your new Surface with extraordinary accessories.</p>
<a href="#" class="btn btn-primary">Shop Surface bundeles ></a>
</div>
</div>
</div>
<div class="surface p-5">
<h2 style="text-align: l
;display: block;">Certified Refurbished Surface</h2>
<span>Showing 1 through 4 of 9 itemsShowing 1 through 4 of 9 items <a href="#" style="text-decoration:none
;">See all ></a></span>
<!-- Swiper -->
<div class="swiper mySwiper mt-3 ">
<div class="swiper-wrapper">
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4P7Wb.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $530.16</h4>
<a href="#" class="card-l
">Surface pro 8</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$939.00 </span>$713.64</h5>
<p class="card-text">Unlock more possibilities than ever with the Pro designed for a Pro like you. The...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide "><div class="card">
<img class="card-img-top" src="./images/RE4P0rI.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $88.06</h4>
<a href="#" class="card-l
">Surface Go 3</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$339.00</span>$291.64</h5>
<p class="card-text">The most portable Surface touchscreen 2-in-1 is perfect for your everyday tasks...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4OXzi.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $396.46</h4>
<a href="#" class="card-l
">Surface Laptop Studio</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,353.00 </span>$1,116.74</h5>
<p class="card-text">Set your imagination free on the most powerful Surface Laptop, designed to light up...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4LEgb.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $591.31</h4>
<a href="#" class="card-l
">Surface Laptop 4</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,273.00 </span>$908.09</h5>
<p class="card-text">Style and speed. Stand out on HD video calls backed by Studio Mics. ideas on...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE3oYj5.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-outline-danger">Fixed Proce !</h4>
<a href="#" class="card-l
">Surface Laptop 3</a>
<h5 class="card-t
fw-bold">From $749.00</h5>
<p class="card-text">Slim and stylish, available in 13.5” and 15” touchscreens, rich color options,¹ and...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4tjV5.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $622.44</h4>
<a href="#" class="card-l
">Surface pro 7</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$679.00 </span>434.56</h5>
<p class="card-text">Ultra-light and versatile. At your desk, on the couch, or in the yard, get more done...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4o6Z8.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $175.68</h4>
<a href="#" class="card-l
">Surface Go 2</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$175.608 </span>$175.68</h5>
<p class="card-text">Surface Go 2 is perfectly portable, with a bigger 10.5” touchscreen, better...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE2x0K8.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-outline-danger">Fixed Proce !</h4>
<a href="#" class="card-l
">Surface Laptop 2</a>
<h5 class="card-t
fw-bold">From $849.00</h5>
<p class="card-text">Style and speed. Go beyond the traditional with Surface Laptop 2. Featuring improved...</p>
<a href="#" class="btn btn-primary">Learn more ></a>
</div>
</div></div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
<div class="surface-bundles p-5">
<h2 style="text-align: l
;display: block;">Surface Bundles</h2>
<span>Showing 1 through 4 of 10 items <a href="#" style="text-decoration:none
;">See all ></a></span>
<!-- Swiper -->
<div class="swiper myRashin mt-3 ">
<div class="swiper-wrapper">
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RWVu6N.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $439.99</h4>
<a href="#" class="card-l
">Surface pro 8 and Surface pto Keyboard Bundle</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,339.90 </span>$899.64</h5>
<p class="card-text text-truncate">Unlock more possibilities than ever with the Pro designed for a Pro like you. The...</p>
</div>
</div></div>
<div class="swiper-slide "><div class="card">
<img class="card-img-top" src="./images/RWO4jw.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $330.00</h4>
<a href="#" class="card-l
">Surface Pro 7 + and Surface Pro Type Cover Bundle</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,229.99</span>$891.64</h5>
<p class="card-text text-truncate">The most portable Surface touchscreen 2-in-1 is perfect for your everyday tasks...</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE5buGz.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $315.80</h4>
<a href="#" class="card-l
">Surface Pro 9 + 7 Essentials Bundle</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,398.00 </span>$1,333.17</h5>
<p class="card-text text-truncate">Move through your day with this bundle featuring Surface Pro 9, Surface Pro Signature</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE58Dz6.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $159.80</h4>
<a href="#" class="card-l
">Surface Laptop 5 Essentials Bundle</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,218.00 </span>$1,154.19</h5>
<p class="card-text text-truncate">Do it all, all at the same time with this bundle featuring Surface Laptop 5, Microsoft</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4tjV5.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $119.80</h4>
<a href="#" class="card-l
">Surface Studio 2 + Essentials Bundle</a>
<h5 class="card-t
fw-bold">From $4,339.0</h5>
<p class="card-text text-truncate">Elevate your creativity and productivity with this bundle featuring Surface Studio 2</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4XSP6.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $755.84</h4>
<a href="#" class="card-l
">Surface Laptop 4 + 3 Essentials Bundle</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$1,498.00 </span>1,034.17</h5>
<p class="card-text text-truncate">Work and play anywhere with this bundle featuring Surface Laptop Go 2, Microsoft 365</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RWKot7.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $755.68</h4>
<a href="#" class="card-l
">Surface pro 8 + 7 Essentials Bundle</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$175.608 </span>$175.68</h5>
<p class="card-text text-truncate">Surface Go 2 is perfectly portable, with a bigger 10.5” touchscreen, better</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RWBqjP.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save up to $755.68</h4>
<a href="#" class="card-l
">Surface Laptop 4 Essentials Bundle</a>
<h5 class="card-t
fw-bold">From $849.00</h5>
<p class="card-text text-truncate">This bundle includes your choice of Surface Laptop 4, Microsoft 365, and Microsoft</p>
</div>
</div></div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
<div class="accessories p-5">
<h2 style="text-align: l
;display: block;">Accessories deals</h2>
<span>Showing 1 through 4 of 10 items <a href="#" style="text-decoration:none
;">See all ></a></span>
<!-- Swiper -->
<div class="swiper myslider mt-3 ">
<div class="swiper-wrapper ">
<div class="swiper-slide view overlay zoom"><div class="card">
<img class="card-img-top img-fluid " src="./images/RE4O4Mp.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $39.99</h4>
<a href="#" class="card-l
">Surface Slim Pen 2</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$129.99 </span>$92.64</h5>
<p class="card-text text-truncate">Write, sketch, navigate, and recharge. Take handwritten notes and draw with the same...</p>
</div>
</div></div>
<div class="swiper-slide "><div class="card">
<img class="card-img-top" src="./images/RE3oTfe.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $8.00</h4>
<a href="#" class="card-l
">Surface Arc Mouse</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$79.99</span>$71.00</h5>
<p class="card-text text-truncate">Slim, light, and ready to travel, Surface Arc Mouse is designed to conform to your...</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE3p12j.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $25.80</h4>
<a href="#" class="card-l
">Surface Pen</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$99.00 </span>$74.99</h5>
<p class="card-text text-truncate">Surface Pen is better and faster than ever, with tilt for shading,¹ greater...</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4AUlT.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $70.00</h4>
<a href="#" class="card-l
">Surface Earbuds</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$199.99 </span>$129.99</h5>
<p class="card-text text-truncate">Featuring ultra-comfortable design, intuitive controls, access to innovative Microsoft..</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4Zcnc.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $27.00</h4>
<a href="#" class="card-l
">Microsoft Audio Dock</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$249.99 </span>$229.99</h5>
<p class="card-text text-truncate">Reduce cord clutter, simplify your desktop, and upgrade your audio for meetings and...</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE4nYM2.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $68.00</h4>
<a href="#" class="card-l
">Surface Dock 2</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$248.00 </span>191.17</h5>
<p class="card-text text-truncate">Bring more power to your laptop. Surface Dock 2 transforms your Surface into a desktop...</p>
</div>
</div></div>
<div class="swiper-slide"><div class="card">
<img class="card-img-top" src="./images/RE3Cwxz.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $40.00</h4>
<a href="#" class="card-l
">Microsoft Arc Mouse</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$79.88 </span>$39.88</h5>
<p class="card-text text-truncate">Microsoft Arc Mouse is designed to conform to your hand — and snaps flat to fit easily...</p>
</div>
</div></div>
<div class="swiper-slide "><div class="card">
<img class="card-img-top hover-shadow" src="./images/RWBqjP.webp" alt="Card image">
<div class="card-body text-start">
<h4 class="btn fw-bolder d-block btn-warning">save $25.00</h4>
<a href="#" class="card-l
">Microsoft USB-C</a>
<h5 class="card-t
fw-bold">From <span class="card-t
text-decoration-line-through fw-normal">$99.00 </span>$74.99</h5>
<p class="card-text text-truncate">Have the ports you need with this multi-port adapter that gives you five ways to...</p>
</div>
</div></div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
<div class="store p-4">
<h2 class="text-left d-block">Why buy from Microsoft Store</h2>
<div class="d-flex flex-row flex-wrap p-4 justify-content-evenly">
<div class="card mb-4 " >
<img src="./images/VP-Truck-740x417 (1).webp" class="card-img-top" alt="...">
<div class="card-body">
<h2 class="card-title">Free 2-3 day shopping</h2>
<p class="card-text">Enjoy free 2-3 day expedited shipping with any order. For lower carbon emissions than standard air freight, we also offer the option of ground shipping (3-7 business days) on eligible orders in the contiguous US.</p>
<a href="#" class="card-text">see shopping details > </a>
</div>
</div>
<div class="card mb-4 " >
<img src="./images/MSSTORE-Value-Prop-Free-Returns.webp" class="card-img-top" alt="...">
<div class="card-body">
<h2 class="card-title">30-day free returns</h2>
<p class="card-text">Return almost any product in like-new condition in its original packaging within 30 days. Get up to 60 days for Surface devices.</p>
<a href="#" class="card-text">Learn about returns ></a>
</div>
</div>
<div class="card mb-4 " >
<img src="./images/gldn-Financing-VP.webp" class="card-img-top" alt="...">
<div class="card-body">
<h2 class="card-title">Flexible payment options that start at 0% APR</h2>
<p class="card-text">Microsoft Store and partners are bringing you new ways to pay at checkout. They’re simple, safer options to get what you want when you want</p>
<a href="#" class="card-text">Learn about flexiblr payment ></a>
</div>
</div>
<div class="card mb-4 " >
<img src="./images/ValueProp_ContentPlacement_PricePromise1.webp" class="card-img-top" alt="...">
<div class="card-body">
<h2 class="card-title">30-day low price promise</h2>
<p class="card-text">If you make a purchase from Microsoft Store and we lower the price within 30 days, contact us and we'll refund you the difference. Enjoy our price promise for up to 60 days on Surface devices. Some exclusions may apply.
</p>
<a href="#" class="card-text">Learn about our price promise ></a>
</div>
</div>
</div>
</div>
<div class="text p-4 text-start">
<div class="mb-5">
<p class="lead
"><h5 class="fw-bold d-inline-block">Free extended returns :</h5>Extended return offer period available with Surface devices purchased from Microsoft Store in select markets. Return process must be started within 60 days after customer received the device. Not available for purchases by reseller customers. Extended return offer period limited to 5 device returns total per eligible customer. Excludes Surface Hub. Void where prohibited or restricted by law. Microsoft reserves the right to modify or discontinue offers at any time. Other exclusions and limits may apply. Microsoft Store return policy applies to extended returns. See applicable <a href="#">Microsoft Terms of Sale</a> for more information.</p>
</div>
<div class="mb-9">
<p class="lead"><h5 class="fw-bold d-inline-block">Extended Low Price Promise : </h5>Offer valid on purchases of physical products made at Microsoft Store for 30 days from purchase date, or 60 days for Surface products, excluding Surface Hub (“Offer Period”). Customer is eligible for price adjustment only if the price of the purchased physical product or Surface is reduced during the Offer Period and in stock for purchase. Customer must contact Microsoft Store Sales & Support with order number and any other information requested by a representative for price adjustment. Credit will be provided to same method of payment. Limited to 5 devices per eligible Customer during the Offer Period, maximum of 1 price adjustment per device. Microsoft reserves the right to modify or discontinue offers at any time.</p>
</div>
<div>
<h5 class="fw-bold mb-4">Surface Laptop Deals & Tablet Deals</h5>
<p class="le
">
[1] Available only in Microsoft online store in the United States (including Puerto Rico). Offer valid for reimbursements with purchases of select hardware devices from Microsoft Store, after trade in of qualifying devices (PC, laptop, mobile phone, tablet), while supplies last. To be eligible for trade in, you must own the qualifying device, device must power on, battery must hold charge and not be required to be plugged in to operate, and be in fully-functional, working condition without broken/missing components, cracked display/housing, liquid damage, modification(s), or have device warranty seal broken. Device cannot be password protected, and must include original chargers/accessories, and must contain hard drive. Customer must mail in the qualifying trade-in device to be eligible for the reimbursements. All trade-ins are final. Not valid on prior orders or purchases; cannot be transferred or otherwise redeemed for cash or gift cards, or credit towards other devices or products. May not be combined with other offers. Price discount does not include taxes, shipping, or other fees. Void where prohibited or restricted by law. Microsoft reserves the right to modify or discontinue offers at any time. Other exclusions and limits may apply.</p>
</div>
</div>
<div class="footer">
<!-- Footer -->
<footer class="text-center text-lg-start bg-light text-muted">
<!-- Section: Social media -->
<section class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom">
<!-- Left -->
<div class="me-5 d-none d-lg-block">
<span>Get connected with us on social networks:</span>
</div>
<!-- Left -->
<!-- Right -->
<div>
<a href="" class="me-4 text-reset">
<i class="bi bi-facebook"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-twitter"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-google"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-instagram"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-linkedin"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-github"></i>
</a>
</div>
<!-- Right -->
</section>
<section class="">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-2">
<div class="col-md-2 col-lg-2 col-xl-2 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Whats's new
</h6>
<p>
<a href="#!" class="text-reset text-decoration-none">Surface Pro 9</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Surface Laptop 5</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Surface Studio 3+</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Surface Laptop Go 2</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Surface Go 3</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Microsoft 365</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Windows 11 apps</a>
</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4 fs-10">
Microsoft Store
</h6>
<p>
<a href="#!" class="text-reset text-decoration-none">Account Profile</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Download Center</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Microsoft store support</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Returns</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Order tracking</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Microsoft Store promise</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Flexible Payments</a>
</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Education
</h6>
<p>
<a href="#!" class="text-reset text-decoration-none">Microsoft in Education</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Devices for Education</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Microsoft Teams for Education</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Microsoft 365 Education</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Educator training and development</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Deals for Students and Parents</a>
</p>
<p>
<a href="#!" class="text-reset text-decoration-none">Azure for students </a>
</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Business
</h6>
<p>