-
Notifications
You must be signed in to change notification settings - Fork 0
/
macbook.html
729 lines (717 loc) · 32.6 KB
/
macbook.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
<!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>MacBook</title>
<link rel="shortcut icon" href="img/apple-logo-24.png" type="image/x-icon">
<link rel="stylesheet" href="css/macbook.css">
<!-- BOX ICON LINK -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- Libre Franklin Font-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300&display=swap" rel="stylesheet">
<!-- inter font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="nav-container">
<nav>
<ul class="mobile-nav">
<li>
<div class="menu-icon-container">
<div class="menu-icon">
<span class="line-1"></span>
<span class="line-2"></span>
</div>
</div>
</li>
<li>
<a href="index.html" class="link-logo"></a>
</li>
<div class="bag-mood">
<!-- <li>
<i id="NightBtn" class='bx bxs-moon bx-tada' style='color:#ffffff' ></i>
<i id="NightBtn" class='bx bxs-sun bx-tada sun' style='color:#ffffff' ></i>
</li> -->
<li>
<a href="" class="link-bag" id="CartIcon"></a>
</li>
</div>
</ul>
<ul class="desktop-nav">
<li>
<a href="index.html" class="link-logo"></a>
</li>
<li>
<a href="macbook.html">Mac</a>
</li>
<li>
<a href="#">iPad</a>
</li>
<li>
<a href="#">iPhone</a>
</li>
<li>
<a href="#">Watch</a>
</li>
<li>
<a href="#">TV</a>
</li>
<li>
<a href="#">Music</a>
</li>
<li>
<a href="#">Support</a>
</li>
<li>
<a href="#" class="link-search"></a>
</li>
<!-- <li>
<i id="NightBtn" class='bx bxs-moon bx-tada' style='color:#ffffff' ></i>
<i id="NightBtn" class='bx bxs-sun bx-tada sun' style='color:#ffffff' ></i>
</li> -->
<li>
<a href="#" class="link-bag" id="CartIcon"> </a>
</li>
</ul>
<div class="sub-menu-wrap" id="subMenu">
<div class="sub-menu">
<div class="user-info">
<p class="p1">Your bag is empty.</p>
</div>
<br />
<hr>
<a href="#" class="sub-menu-link">
<img src="img/bag.svg" alt="">
<p>Bag</p>
</a>
<hr>
<a href="#" class="sub-menu-link">
<img class="savedimg" src="img/saved.svg" alt="">
<p>Favorite</p>
</a>
<hr>
<a href="#" class="sub-menu-link">
<img src="img/orders.svg" alt="">
<p>Orders</p>
</a>
<hr>
<a href="#" class="sub-menu-link">
<img src="img/account.svg" alt="">
<p>Account</p>
</a>
<hr>
<a href="#" class="sub-menu-link">
<img src="img/sign.svg" alt="">
<p>Sign in</p>
</a>
</div>
</div>
</nav>
<img src="./images/macair video.mp4" alt="">
<!-- End of navigation menu items -->
<div class="search-container hide">
<div class="link-search"></div>
<div class="search-bar">
<form action="">
<input type="text" placeholder="Search apple.com">
</form>
</div>
<div class="link-close"></div>
<div class="quick-links">
<h2>Quick Links</h2>
<ul>
<li>
<a href="#">Visiting an Apple Store FAQ</a>
</li>
<li>
<a href="#">Shop Apple Store Online</a>
</li>
<li>
<a href="#">Accessories</a>
</li>
<li>
<a href="#">AirPods</a>
</li>
<li>
<a href="#">AirTag</a>
</li>
</ul>
</div>
</div>
<div class="mobile-search-container">
<div class="link-search"></div>
<div class="search-bar">
<form action="">
<input type="text" placeholder="Search apple.com">
</form>
</div>
<span class="cancel-btn">Cancel</span>
<div class="quick-links">
<h2>Quick Links</h2>
<ul>
<li>
<a href="#">Visiting an Apple Store FAQ</a>
</li>
<li>
<a href="#">Shop Apple Store Online</a>
</li>
<li>
<a href="#">Accessories</a>
</li>
<li>
<a href="#">AirPods</a>
</li>
<li>
<a href="#">AirTag</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="overlay"></div>
</header>
<section id="macbook">
<div class="macklandpagecontent">
<p class="macklandpagecontentfirstparagraph">New</p>
<h1 class="macklandpagecontenth1">MacBook Air</h1>
<h3 class="macklandpagecontenth3">Don't take it lightly</h3>
<a href="" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
<p class="macklandpagecontentsecondparagraph">Check back for availability</p>
</div>
<div>
<img src="img/macair-video-unscreen.gif" alt="">
</div>
</section>
<section id="macbookpro13">
<div class="macbookpro13">
<p class="macklandpagecontentfirstparagraph">New</p>
<h1 class="macpropagecontenth1">MacBook Pro 13</h1>
<h3 class="">Pro anywhere</h3>
<div class="buylearn">
<button class="buybtn">Buy</button>
<a href="" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<div class="macpro13">
<img src="img/MacBookpro13image.png" alt="" width="100%">
</div>
<!-- <div class="Glass">
<h1>Glass Card</h1>
</div> -->
</section>
<section id="choose">
<div class="chooseoptions">
<h1 class="choose-heading">Which Mac is right for you?</h1>
<div>
<div class="notedesk">
<h1>Notebook</h1>
<h1>Desktop</h1>
</div>
<div class="notedeskline">
<div class="noteline"></div>
</div>
</div>
</div>
<section class="allcategories">
<section class="categories">
<div id="categoriesdiv">
<div class="firstandsecond">
<div class="firstline">
<div class="firstlaptopdiv">
<div>
<img src="img/categories/macbookairpng.png" alt="">
</div>
<div class="carousel">
<div class="span"></div>
<div class="span"></div>
<div class="span"></div>
</div>
<div class="firstlaptopdivcontents">
<h3>MacBook Air</h3>
<h5>M1 chip</h5>
<button class="buybtn">Buy</button>
<a href="#" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<hr>
<div class="laptopcontent">
<div class="retina">
<h2>13.3"</h2>
<p>Retina display</p>
</div>
<div class="retina">
<img src="img/categories/applem1chip.png" alt="">
<p>Apple M1 chip</p>
</div>
<div class="retina">
<h2>8-core</h2>
<p>CPU</p>
</div>
<div class="retina">
<h2>7-core</h2>
<p>GPU</p>
</div>
<div class="retina">
<img src="img/categories/unifiedmemory.png" alt="">
<p>Up to 16GB unified memory</p>
</div>
<div class="retina">
<h2>2TB</h2>
<p>Maximum configurable storage</p>
</div>
<div class="retina">
<img src="img/categories/battery.png" alt="">
<p>Up to 18 hours battery life</p>
</div>
<div class="retina">
<img src="img/categories/camera.png" alt="">
<p>720p Facetime HD camera</p>
</div>
<div class="retina">
<img src="img/categories/speaker.png" alt="">
<p>Three-mic array <br> Stereo speakers</p>
</div>
<div class="retina">
<h2>1.29 kg</h2>
<p>Weight</p>
</div>
<div class="retina">
<img src="img/categories/fingerprint.png" alt="">
<p>Touch ID</p>
</div>
</div>
</div>
<div class="secondline">
<div class="firstlaptopdiv secondlaptopdiv">
<div>
<img src="img/categories/newmacbookair.png" alt="" width="180px">
</div>
<div class="carousel2">
<div class="span"></div>
<div class="span"></div>
<div class="span"></div>
<div class="span"></div>
</div>
<p class="new">New</p>
<div class="firstlaptopdivcontents secondlaptopdivcontents">
<h3>MacBook Air</h3>
<h5>M2 chip</h5>
<button class="buybtn">Buy</button>
<a href="#" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<hr>
<div class="laptopcontent">
<div class="retina">
<h2>13.6"</h2>
<p>Liquid Retina display</p>
</div>
<div class="retina">
<img src="img/categories/applem2chip.png" alt="">
<p>Apple M2 chip</p>
</div>
<div class="retina">
<h2>8-core</h2>
<p>CPU</p>
</div>
<div class="retina relative">
<p class="absolute">Up to</p>
<h2>10-core</h2>
<p>GPU</p>
</div>
<div class="retina">
<img src="img/categories/unifiedmemory.png" alt="">
<p>Up to 24GB unified memory</p>
</div>
<div class="retina">
<h2>2TB</h2>
<p>Maximum configurable storage</p>
</div>
<div class="retina">
<img src="img/categories/battery.png" alt="">
<p>Up to 18 hours battery life</p>
</div>
<div class="retina">
<img src="img/categories/camera.png" alt="">
<p>1080p Facetime HD camera</p>
</div>
<div class="retina speaker">
<img class="speaker-img" src="img/categories/speaker.png" alt="">
<p class="speak">Three-mic array <br> Four-speakers sound system with <br> Spatial Audio</p>
</div>
<div class="retina">
<h2>1.24 kg</h2>
<p>Weight</p>
</div>
<div class="retina">
<img src="img/categories/fingerprint.png" alt="">
<p>Touch ID</p>
</div>
</div>
</div>
</div>
<div class="thirdandforth">
<div class="thirdline">
<div class="firstlaptopdiv second">
<div>
<img src="img/categories/macpro13laptop.png" alt="">
</div>
<div class="carousel3">
<div class="span"></div>
<div class="span"></div>
</div>
<p class="new">New</p>
<div class="firstlaptopdivcontents">
<h3>MacBook Pro 13"</h3>
<!-- <h5>M1 chip</h5> -->
<button class="buybtn thirdbtn">Buy</button>
<a href="#" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<hr>
<div class="laptopcontent">
<div class="retina">
<h2>13.3"</h2>
<p>Retina display</p>
</div>
<div class="retina">
<img src="img/categories/applem2chip.png" alt="">
<p>Apple M2 chip</p>
</div>
<div class="retina">
<h2>8-core</h2>
<p>CPU</p>
</div>
<div class="retina">
<h2>10-core</h2>
<p>GPU</p>
</div>
<div class="retina">
<img src="img/categories/unifiedmemory.png" alt="">
<p>Up to 24GB unified memory</p>
</div>
<div class="retina">
<h2>2TB</h2>
<p>Maximum configurable storage</p>
</div>
<div class="retina">
<img src="img/categories/battery.png" alt="">
<p>Up to 20 hours battery life</p>
</div>
<div class="retina">
<img src="img/categories/camera.png" alt="">
<p>720p Facetime HD camera</p>
</div>
<div class="retina speaker">
<img class="speaker-img" src="img/categories/speaker.png" alt="">
<p class="speak">Studio quality three-mic array <br> Stereo speakers with <br> Spatial Audio</p>
</div>
<div class="retina">
<h2>1.4 kg</h2>
<p>Weight</p>
</div>
<div class="retina">
<img src="img/categories/fingerprint.png" alt="">
<p>Touch Bar and Touch ID</p>
</div>
</div>
</div>
<div class="forthline">
<div class="firstlaptopdiv second">
<div>
<img src="img/categories/macbookpro14&16.png" alt="" width="196px">
</div>
<div class="carousel">
<div class="span"></div>
<div class="span"></div>
</div>
<div class="firstlaptopdivcontents fourthlapi">
<h3 class="macbookprotext">MacBook Pro <br> 14" and 16"</h3>
<button class="buybtn">Buy</button>
<a href="#" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<hr>
<div class="laptopcontent">
<div class="retina">
<h2>14.2" or 16.2"</h2>
<p>Liquid Retina XDR display</p>
</div>
<div class="retina speaker4">
<div class="promaxbox">
<img src="img/categories/applem1pro.png" alt="">
<img src="img/categories/applem1max.png" alt="">
</div>
<p class="speak4">Apple M1 Pro chip or <br> Apple M1 max chip</p>
</div>
<div class="retina relative">
<p class="absolute">Up to</p>
<h2>10-core</h2>
<p>CPU</p>
</div>
<div class="retina relative">
<p class="absolute">Up to</p>
<h2>32-core</h2>
<p>GPU</p>
</div>
<div class="retina">
<img src="img/categories/unifiedmemory.png" alt="">
<p>Up to 64GB unified memory</p>
</div>
<div class="retina">
<h2>8TB</h2>
<p>Maximum configurable storage</p>
</div>
<div class="retina">
<img src="img/categories/battery.png" alt="">
<p>Up to 21 hours battery life</p>
</div>
<div class="retina">
<img src="img/categories/camera.png" alt="">
<p>1080p Facetime HD camera</p>
</div>
<div class="retina speaker">
<img class="speaker-img" src="img/categories/speaker.png" alt="">
<p class="speak">Studio-quality three-mic array <br>Six-speaker sound system with <br> Spatial Audio</p>
</div>
<div class="retina">
<h2>1.6 kg or 2.1 kg</h2>
<p>Weight</p>
</div>
<div class="retina">
<img src="img/categories/fingerprint.png" alt="">
<p>Touch ID</p>
</div>
</div>
</div>
</div>
</div>
<hr class="choosehr">
<a href="#" class="learnmore maxmodels">
<p class="maxmodelsparagraph">Compare all Mac models</p>
<i class='bx bx-chevron-right'></i>
</a>
</section>
</section>
</section>
<section id="builtinapps">
<div class="builtinapps">
<div class="builtintitle">
<h1>Built-in Apps</h1>
<p>Powerful creativity and productivity tools live inside every Mac - apps that help you explore, connect and work effeciently.</p>
</div>
<div class="builtinappscarousel">
<div class="builtinappscarouselimage">
<img src="img/categories/built in app.png" alt="" width="100%">
</div>
<div class="builtinappscarouselparagraph">
<p>Safari has innovative features that lets you you enjoy more of the web. in even more ways. Built-in privacy features help you protect your information and keep your Mac secure. An updated start page helps you easily and quickly save, find and share your favorite sites. And sisi suggestions surface bookmarks, link from your readijng list, iCloud Tabs, links you receive in Messages and more</p>
</div>
</div>
<div class="desktopscreen">
<img width="100%" src="img/categories/desktopscreenone.png" alt="">
</div>
</div>
</section>
<section id="proapps">
<div class="proapps">
<div class="proappstitle">
<h1>Pro Apps</h1>
<p>For proffessionals ready to push their creativity, these industry-leading apps offer maximum control over editing, processing, and output of music and film.</p>
</div>
<div class="proappscarousel">
<div class="proappscarouselimage">
<img width="100%" src="img/categories/proapps.png" alt="">
</div>
<div class="proappscarouselparagraph">
<p>Logic Pro puts a complete recording and MIDI production studio on your Mac, with everything you need to write, record, edit, and mixlike never before. and with a huge collection of full-featured plug-ins along with thousand of sounds and loop, you'll have everything you need to go from first inspiration to final master, no matter what kind of music you want to create.</p>
<a href="#" class="learnmore maxmodels">
<p class="maxmodelsparagraph">Learn more about Logic Pro </p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<div class="laptopscreen">
<img width="100%" src="img/categories/laptopscreen.png" alt="">
</div>
<hr class="proappshr">
<div class="appstore">
<div>
<img width="45px" src="img/categories/appstoreA.png" alt="">
</div>
<div class="appstorecontents">
<p>The Mac App Store features rich editoral content and great apps for Mac.</p>
<a href="#" class="learnmore prolink">
<p class="maxmodelsparagraph">Explore the Mac App Store </p>
<i class='bx arrowup bx-up-arrow-alt'></i>
</a>
</div>
</div>
</div>
</section>
<section id="arcade">
<h1>Get more out of Mac</h1>
<div class="arcade">
<div class="arcadecontents">
<div class="arcadeh1andicon">
<i class='bx bxl-apple'></i>
<h2>Arcade</h2>
</div>
<p class="arcadeparagraph">Get 3 months of Apple Arcade free <br> when you buy a Mac</p>
<div class="trylearnlink">
<a href="" class="learnmore">
<p>Try it free</p>
<i class='bx arrowup bx-up-arrow-alt'></i>
</a>
<a href="" class="learnmore">
<p>Learn more</p>
<i class='bx bx-chevron-right'></i>
</a>
</div>
</div>
<div class="arcadeimage">
<img width="100%" src="img/categories/arcadeimage.png" alt="">
</div>
</div>
</section>
<footer id="macfooter">
<div class="footer-paragraph">
<div class="footer-text">
<p>1. Screen size is measured diagonay</p>
<p>2. 1TB = 1 trillion bytes; actual formatted capacity less.</p>
<p>3. Testing conducted by Apple in October 2020 using preproduction MacBook Air systems with Apple M1 chip and 8-core GPU, configured with 8GB of RAM and 512GB SSD.
The Apple TV app movie playback test measures battery life by playing back HD 1080p content with display brightness set to 8 clicks from bottom. Battery life varies by
use and configuration. See apple.com/ng/batteries for more information.
</p>
<p>4. Testing conducted by Apple in May 2022 using preproduction MacBook Air systems with Apple M2, 8-core CPU, 8-core GPU, 8GB of RAM, and 256GB SSD. The wireless
web test measures battery life by wirelessly browsing 25 popular websites with display brightness set to 8 clicks from bottom. The Apple TV app movie playback test
measures battery life by playing back HD 1080p content with display brightness set to 8 clicks from bottom. Battery life varies by use and configuration. See
apple.com/ng/batteries for more information.
</p>
<p>
5. Testing conducted by Apple in May 2022 using preproduction 13-inch MacBook Pro systems with Apple M2, 8-core CPU, 10-core GPU, 8GB of RAM, and 256GB SSD. The
wireless web test measures battery life by wirelessly browsing 25 popular websites with display brightness set to 8 clicks from bottom. The Apple TV app movie playback
test measures battery life by playing back HD 1080p content with display brightness set to 8 clicks from bottom. Battery life varies by use and configuration. See
apple.com/ng/batteries for more information.
</p>
<p>
6. Testing conducted by Apple in September 2021 using preproduction 14-inch MacBook Pro systems with Apple M1 Pro, 8-core CPU, 14-core GPU, 16GB of RAM, and
512GB SSD; and preproduction 16-inch MacBook Pro systems with Apple M1 Pro, 10-core CPU, 16-core GPU, 16GB of RAM, and 1TB SSD. The Apple TV app movie
playback test measures battery life by playing back HD 1080p content with display brightness set to 8 clicks from bottom. Battery life varies by use and configuration. See
apple.com/ng/batteries for more information.
</p>
<p>
7. Actual diagonal screen size is 23.5 inches.
</p>
<p>
8. Intel-based model comes with Intel UHD Graphics 630.
</p>
<p>
9. intel-based model is available with up to 64GB memory.
</p>
<p>
10. ₦1800/month after free trial. One subscription per Family Sharing group. Offer good for 3 months after eligible device activation. Plan automatically renews until cancelled.
Restrictions and other terms apply.
</p>
</div>
</div>
<hr class="footerhr">
<section class="Footer_Contents">
<div class="Footer_Contents-link">
<div class="footer-heading-links">
<div class="headingandicon">
<h1>Explore</h1>
<i class='bx bx-plus'></i>
</div>
<!-- <hr class="linkshr"> -->
<div class="footer-links">
<p>Mac</p>
<p>iPad</p>
<p>iPhone</p>
<p>Music</p>
<p>AirPods</p>
<p>AirTag</p>
</div>
</div>
<div class="footer-heading-links">
<div class="headingandicon">
<h1>Services</h1>
<i class='bx bx-plus'></i>
</div>
<div class="footer-links">
<p>Apple Music</p>
<p>Apple Arcade</p>
<p>iCloud</p>
</div>
</div>
<div class="footer-heading-links">
<div class="headingandicon">
<h1>Account</h1>
<i class='bx bx-plus'></i>
</div>
<div class="footer-links">
<p>Manage Your Apple ID</p>
<p>iCloud.com</p>
</div>
</div>
<div class="footer-heading-links">
<div class="headingandicon">
<h1>About Apple</h1>
<i class='bx bx-plus'></i>
</div>
<div class="footer-links">
<p>Newsroom</p>
<p>Apple Leadership</p>
<p>Career Opportunities</p>
<p>Investors</p>
<p>AirPods</p>
<p>Ethics & Compliance</p>
</div>
</div>
</div>
<div class="footerfindtext">
<h1>Find a retailer <span>near you.</span></h1>
</div>
</section>
<hr class="footerhr2">
<div class="footerfinaldiv">
<div class="footerfinaldiv1">
<p>Copyright</p>
<p>2022 Apple Inc. All rights reserved</p>
<p>Terms of use</p>
<p>Site map</p>
</div>
<div>
<p>Nigeria</p>
</div>
</div>
</footer>
<script src="js/mac.js"></script>
</body>
</html>