-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUntitledx.html
More file actions
1473 lines (1083 loc) · 70.2 KB
/
Untitledx.html
File metadata and controls
1473 lines (1083 loc) · 70.2 KB
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 xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US" prefix="og: http://ogp.me/ns#" class="no-js" data-layout-name="tv-plus-before-dark-premiere">
<head>
<script src="/metrics/target/scripts/1.0/at.js" type="text/javascript" charset="utf-8"></script>
<script>
window.AB = window.AB || {};
window.AB.isAbTestActive = true;
</script>
<meta charset="utf-8" />
<link rel="canonical" href="https://www.apple.com/" />
<link rel="alternate" href="https://www.apple.com/" hreflang="en-US" /><link rel="alternate" href="https://www.apple.com/ae-ar/" hreflang="ar-AE" /><link rel="alternate" href="https://www.apple.com/ae/" hreflang="en-AE" /><link rel="alternate" href="https://www.apple.com/am/" hreflang="en-AM" /><link rel="alternate" href="https://www.apple.com/at/" hreflang="de-AT" /><link rel="alternate" href="https://www.apple.com/au/" hreflang="en-AU" /><link rel="alternate" href="https://www.apple.com/befr/" hreflang="fr-BE" /><link rel="alternate" href="https://www.apple.com/benl/" hreflang="nl-BE" /><link rel="alternate" href="https://www.apple.com/bg/" hreflang="bg-BG" /><link rel="alternate" href="https://www.apple.com/bh-ar/" hreflang="ar-BH" /><link rel="alternate" href="https://www.apple.com/bh/" hreflang="en-BH" /><link rel="alternate" href="https://www.apple.com/br/" hreflang="pt-BR" /><link rel="alternate" href="https://www.apple.com/bw/" hreflang="en-BW" /><link rel="alternate" href="https://www.apple.com/ca/" hreflang="en-CA" /><link rel="alternate" href="https://www.apple.com/ca/fr/" hreflang="fr-CA" /><link rel="alternate" href="https://www.apple.com/cf/" hreflang="fr-CF" /><link rel="alternate" href="https://www.apple.com/chde/" hreflang="de-CH" /><link rel="alternate" href="https://www.apple.com/chfr/" hreflang="fr-CH" /><link rel="alternate" href="https://www.apple.com/ci/" hreflang="fr-CI" /><link rel="alternate" href="https://www.apple.com/cl/" hreflang="es-CL" /><link rel="alternate" href="https://www.apple.com/cm/" hreflang="fr-CM" /><link rel="alternate" href="https://www.apple.com/co/" hreflang="es-CO" /><link rel="alternate" href="https://www.apple.com/cz/" hreflang="cs-CZ" /><link rel="alternate" href="https://www.apple.com/de/" hreflang="de-DE" /><link rel="alternate" href="https://www.apple.com/dk/" hreflang="da-DK" /><link rel="alternate" href="https://www.apple.com/ee/" hreflang="et-EE" /><link rel="alternate" href="https://www.apple.com/eg-ar/" hreflang="ar-EG" /><link rel="alternate" href="https://www.apple.com/eg/" hreflang="en-EG" /><link rel="alternate" href="https://www.apple.com/es/" hreflang="es-ES" /><link rel="alternate" href="https://www.apple.com/fi/" hreflang="fi-FI" /><link rel="alternate" href="https://www.apple.com/fr/" hreflang="fr-FR" /><link rel="alternate" href="https://www.apple.com/gn/" hreflang="fr-GN" /><link rel="alternate" href="https://www.apple.com/gq/" hreflang="fr-GQ" /><link rel="alternate" href="https://www.apple.com/gr/" hreflang="el-GR" /><link rel="alternate" href="https://www.apple.com/gw/" hreflang="en-GW" /><link rel="alternate" href="https://www.apple.com/hk/" hreflang="zh-HK" /><link rel="alternate" href="https://www.apple.com/hk/en/" hreflang="en-HK" /><link rel="alternate" href="https://www.apple.com/hr/" hreflang="hr-HR" /><link rel="alternate" href="https://www.apple.com/hu/" hreflang="hu-HU" /><link rel="alternate" href="https://www.apple.com/id/" hreflang="en-ID" /><link rel="alternate" href="https://www.apple.com/ie/" hreflang="en-IE" /><link rel="alternate" href="https://www.apple.com/il/" hreflang="en-IL" /><link rel="alternate" href="https://www.apple.com/in/" hreflang="en-IN" /><link rel="alternate" href="https://www.apple.com/it/" hreflang="it-IT" /><link rel="alternate" href="https://www.apple.com/jo-ar/" hreflang="ar-JO" /><link rel="alternate" href="https://www.apple.com/jo/" hreflang="en-JO" /><link rel="alternate" href="https://www.apple.com/jp/" hreflang="ja-JP" /><link rel="alternate" href="https://www.apple.com/ke/" hreflang="en-KE" /><link rel="alternate" href="https://www.apple.com/kr/" hreflang="ko-KR" /><link rel="alternate" href="https://www.apple.com/kw-ar/" hreflang="ar-KW" /><link rel="alternate" href="https://www.apple.com/kw/" hreflang="en-KW" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-CR" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-PE" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-UY" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-PY" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-BO" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-PA" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-DO" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-VE" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-AR" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-EC" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-NI" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-PR" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-HN" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-SV" /><link rel="alternate" href="https://www.apple.com/la/" hreflang="es-GT" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-AG" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-LC" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-AI" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-JM" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-SR" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-KN" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-TC" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-BS" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-KY" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-DM" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-BM" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-BZ" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-MS" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-GY" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-TT" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-VC" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-GD" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-PR" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-BB" /><link rel="alternate" href="https://www.apple.com/lae/" hreflang="en-VG" /><link rel="alternate" href="https://www.apple.com/li/" hreflang="de-LI" /><link rel="alternate" href="https://www.apple.com/lt/" hreflang="lt-LT" /><link rel="alternate" href="https://www.apple.com/lu/" hreflang="fr-LU" /><link rel="alternate" href="https://www.apple.com/lv/" hreflang="lv-LV" /><link rel="alternate" href="https://www.apple.com/ma/" hreflang="fr-MA" /><link rel="alternate" href="https://www.apple.com/md/" hreflang="en-MD" /><link rel="alternate" href="https://www.apple.com/me/" hreflang="en-ME" /><link rel="alternate" href="https://www.apple.com/mg/" hreflang="en-MG" /><link rel="alternate" href="https://www.apple.com/mk/" hreflang="en-MK" /><link rel="alternate" href="https://www.apple.com/ml/" hreflang="fr-ML" /><link rel="alternate" href="https://www.apple.com/mo/" hreflang="zh-MO" /><link rel="alternate" href="https://www.apple.com/mt/" hreflang="en-MT" /><link rel="alternate" href="https://www.apple.com/mu/" hreflang="fr-MU" /><link rel="alternate" href="https://www.apple.com/mx/" hreflang="es-MX" /><link rel="alternate" href="https://www.apple.com/my/" hreflang="en-MY" /><link rel="alternate" href="https://www.apple.com/mz/" hreflang="en-MZ" /><link rel="alternate" href="https://www.apple.com/ne/" hreflang="fr-NE" /><link rel="alternate" href="https://www.apple.com/ng/" hreflang="en-NG" /><link rel="alternate" href="https://www.apple.com/nl/" hreflang="nl-NL" /><link rel="alternate" href="https://www.apple.com/no/" hreflang="no-NO" /><link rel="alternate" href="https://www.apple.com/nz/" hreflang="en-NZ" /><link rel="alternate" href="https://www.apple.com/om-ar/" hreflang="ar-OM" /><link rel="alternate" href="https://www.apple.com/om/" hreflang="en-OM" /><link rel="alternate" href="https://www.apple.com/ph/" hreflang="en-PH" /><link rel="alternate" href="https://www.apple.com/pl/" hreflang="pl-PL" /><link rel="alternate" href="https://www.apple.com/pt/" hreflang="pt-PT" /><link rel="alternate" href="https://www.apple.com/qa-ar/" hreflang="ar-QA" /><link rel="alternate" href="https://www.apple.com/qa/" hreflang="en-QA" /><link rel="alternate" href="https://www.apple.com/ro/" hreflang="ro-RO" /><link rel="alternate" href="https://www.apple.com/ru/" hreflang="ru-RU" /><link rel="alternate" href="https://www.apple.com/sa-ar/" hreflang="ar-SA" /><link rel="alternate" href="https://www.apple.com/sa/" hreflang="en-SA" /><link rel="alternate" href="https://www.apple.com/se/" hreflang="sv-SE" /><link rel="alternate" href="https://www.apple.com/sg/" hreflang="en-SG" /><link rel="alternate" href="https://www.apple.com/si/" hreflang="en-SI" /><link rel="alternate" href="https://www.apple.com/sk/" hreflang="sk-SK" /><link rel="alternate" href="https://www.apple.com/sn/" hreflang="fr-SN" /><link rel="alternate" href="https://www.apple.com/th/" hreflang="th-TH" /><link rel="alternate" href="https://www.apple.com/tn/" hreflang="fr-TN" /><link rel="alternate" href="https://www.apple.com/tr/" hreflang="tr-TR" /><link rel="alternate" href="https://www.apple.com/tw/" hreflang="zh-TW" /><link rel="alternate" href="https://www.apple.com/ug/" hreflang="en-UG" /><link rel="alternate" href="https://www.apple.com/uk/" hreflang="en-GB" /><link rel="alternate" href="https://www.apple.com/vn/" hreflang="en-VN" /><link rel="alternate" href="https://www.apple.com/za/" hreflang="en-ZA" /><link rel="alternate" href="https://www.apple.com.cn/" hreflang="zh-CN" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<link rel="stylesheet" type="text/css" href="/ac/globalnav/5/en_US/styles/ac-globalnav.built.css" />
<link rel="stylesheet" type="text/css" href="/ac/localnav/5/styles/ac-localnav.built.css" />
<link rel="stylesheet" type="text/css" href="/ac/globalfooter/5/en_US/styles/ac-globalfooter.built.css" />
<title>Apple</title>
<meta property="analytics-track" content="Apple - Index/Tab" />
<meta property="analytics-s-channel" content="homepage" />
<meta property="analytics-s-bucket-0" content="appleglobal,applestoreww" />
<meta property="analytics-s-bucket-1" content="apple{COUNTRY_CODE}global,applestoreww" />
<meta property="analytics-s-bucket-2" content="apple{COUNTRY_CODE}global,applestoreww" />
<meta name="Description" content="Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, and expert device support." />
<meta property="og:title" content="Apple" />
<meta property="og:description" content="Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, and expert device support." />
<meta property="og:url" content="https://www.apple.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://www.apple.com/ac/structured-data/images/open_graph_logo.png?201809210816" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Apple" />
<link rel="stylesheet" href="/wss/fonts?families=SF+Pro,v3|SF+Pro+Icons,v3" type="text/css" media="all" />
<link rel="stylesheet" href="/v/home/d/built/styles/main.built.css" type="text/css" />
<script src="/v/home/d/built/scripts/head.built.js" type="text/javascript" charset="utf-8"></script>
</head>
<body class="page-home ac-nav-overlap" >
<h1 class="visuallyhidden">Apple</h1>
<meta name="ac-gn-store-key" content="SFX9YPYY9PPXCU9KH" />
<aside id="ac-gn-segmentbar" class="ac-gn-segmentbar" lang="en-US" dir="ltr" data-strings="{ 'exit': 'Exit', 'view': '{%STOREFRONT%} Store Home', 'segments': { 'smb': 'Business Store Home', 'eduInd': 'Education Store Home', 'other': 'Store Home' } }">
</aside>
<input type="checkbox" id="ac-gn-menustate" class="ac-gn-menustate" />
<nav id="ac-globalnav" class="no-js" role="navigation" aria-label="Global" data-hires="false" data-analytics-region="global nav" lang="en-US" dir="ltr" data-www-domain="www.apple.com" data-store-locale="us" data-store-root-path="/us" data-store-api="/[storefront]/shop/bag/status" data-search-locale="en_US" data-search-locale="en_US" data-search-suggestions-api="/search-services/suggestions/" data-search-defaultlinks-api="/search-services/suggestions/defaultlinks/">
<div class="ac-gn-content">
<ul class="ac-gn-header">
<li class="ac-gn-item ac-gn-menuicon">
<label class="ac-gn-menuicon-label" for="ac-gn-menustate" aria-hidden="true">
<span class="ac-gn-menuicon-bread ac-gn-menuicon-bread-top">
<span class="ac-gn-menuicon-bread-crust ac-gn-menuicon-bread-crust-top"></span>
</span>
<span class="ac-gn-menuicon-bread ac-gn-menuicon-bread-bottom">
<span class="ac-gn-menuicon-bread-crust ac-gn-menuicon-bread-crust-bottom"></span>
</span>
</label>
<a href="#ac-gn-menustate" role="button" class="ac-gn-menuanchor ac-gn-menuanchor-open" id="ac-gn-menuanchor-open">
<span class="ac-gn-menuanchor-label">Global Nav Open Menu</span>
</a>
<a href="#" role="button" class="ac-gn-menuanchor ac-gn-menuanchor-close" id="ac-gn-menuanchor-close">
<span class="ac-gn-menuanchor-label">Global Nav Close Menu</span>
</a>
</li>
<li class="ac-gn-item ac-gn-apple">
<a class="ac-gn-link ac-gn-link-apple" href="/" data-analytics-title="apple home" id="ac-gn-firstfocus-small">
<span class="ac-gn-link-text">Apple</span>
</a>
</li>
<li class="ac-gn-item ac-gn-bag ac-gn-bag-small" id="ac-gn-bag-small">
<div class="ac-gn-bag-wrapper">
<a class="ac-gn-link ac-gn-link-bag" href="/us/shop/goto/bag" data-analytics-title="bag" data-analytics-click="bag" aria-label="Shopping Bag" data-string-badge="Shopping Bag with item count :">
<span class="ac-gn-link-text">Shopping Bag</span>
</a>
<span class="ac-gn-bag-badge">
<span class="ac-gn-bag-badge-separator"></span>
<span class="ac-gn-bag-badge-number"></span>
<span class="ac-gn-bag-badge-unit">+</span>
</span>
</div>
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
</li>
</ul>
<div class="ac-gn-search-placeholder-container" role="search">
<div class="ac-gn-search ac-gn-search-small">
<a id="ac-gn-link-search-small" class="ac-gn-link" href="/us/search" data-analytics-title="search" data-analytics-click="search" data-analytics-intrapage-link aria-label="Search apple.com">
<div class="ac-gn-search-placeholder-bar">
<div class="ac-gn-search-placeholder-input">
<div class="ac-gn-search-placeholder-input-text" aria-hidden="true">
<div class="ac-gn-link-search ac-gn-search-placeholder-input-icon"></div>
<span class="ac-gn-search-placeholder">Search apple.com</span>
</div>
</div>
<div class="ac-gn-searchview-close ac-gn-searchview-close-small ac-gn-search-placeholder-searchview-close">
<span class="ac-gn-searchview-close-cancel" aria-hidden="true">Cancel</span>
</div>
</div>
</a>
</div>
</div>
<ul class="ac-gn-list">
<li class="ac-gn-item ac-gn-apple">
<a class="ac-gn-link ac-gn-link-apple" href="/" data-analytics-title="apple home" id="ac-gn-firstfocus">
<span class="ac-gn-link-text">Apple</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-mac">
<a class="ac-gn-link ac-gn-link-mac" href="/mac/" data-analytics-title="mac">
<span class="ac-gn-link-text">Mac</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-ipad">
<a class="ac-gn-link ac-gn-link-ipad" href="/ipad/" data-analytics-title="ipad">
<span class="ac-gn-link-text">iPad</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-iphone">
<a class="ac-gn-link ac-gn-link-iphone" href="/iphone/" data-analytics-title="iphone">
<span class="ac-gn-link-text">iPhone</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-watch">
<a class="ac-gn-link ac-gn-link-watch" href="/watch/" data-analytics-title="watch">
<span class="ac-gn-link-text">Watch</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-tv">
<a class="ac-gn-link ac-gn-link-tv" href="/tv/" data-analytics-title="tv">
<span class="ac-gn-link-text">TV</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-music">
<a class="ac-gn-link ac-gn-link-music" href="/music/" data-analytics-title="music">
<span class="ac-gn-link-text">Music</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-support">
<a class="ac-gn-link ac-gn-link-support" href="https://support.apple.com" data-analytics-title="support">
<span class="ac-gn-link-text">Support</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-search" role="search">
<a id="ac-gn-link-search" class="ac-gn-link ac-gn-link-search" href="/us/search" data-analytics-title="search" data-analytics-click="search" data-analytics-intrapage-link aria-label="Search apple.com"></a>
</li>
<li class="ac-gn-item ac-gn-bag" id="ac-gn-bag">
<div class="ac-gn-bag-wrapper">
<a class="ac-gn-link ac-gn-link-bag" href="/us/shop/goto/bag" data-analytics-title="bag" data-analytics-click="bag" aria-label="Shopping Bag" data-string-badge="Shopping Bag with item count : {%BAGITEMCOUNT%}">
<span class="ac-gn-link-text">Shopping Bag</span>
</a>
<span class="ac-gn-bag-badge" aria-hidden="true">
<span class="ac-gn-bag-badge-separator"></span>
<span class="ac-gn-bag-badge-number"></span>
<span class="ac-gn-bag-badge-unit">+</span>
</span>
</div>
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
</li>
</ul>
<aside id="ac-gn-searchview" class="ac-gn-searchview" role="search" data-analytics-region="search">
<div class="ac-gn-searchview-content">
<div class="ac-gn-searchview-bar">
<div class="ac-gn-searchview-bar-wrapper">
<form id="ac-gn-searchform" class="ac-gn-searchform" action="/us/search" method="get">
<div class="ac-gn-searchform-wrapper">
<input id="ac-gn-searchform-input" class="ac-gn-searchform-input" type="text" aria-label="Search apple.com" placeholder="Search apple.com" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false" role="combobox" aria-autocomplete="list" aria-expanded="true" aria-owns="quicklinks suggestions" />
<input id="ac-gn-searchform-src" type="hidden" name="src" value="globalnav" />
<button id="ac-gn-searchform-submit" class="ac-gn-searchform-submit" type="submit" disabled aria-label="Submit Search"></button>
<button id="ac-gn-searchform-reset" class="ac-gn-searchform-reset" type="reset" disabled aria-label="Clear Search">
<span class="ac-gn-searchform-reset-background"></span>
</button>
</div>
</form>
<button id="ac-gn-searchview-close-small" class="ac-gn-searchview-close ac-gn-searchview-close-small" aria-label="Cancel Search">
<span class="ac-gn-searchview-close-cancel" aria-hidden="true">
Cancel
</span>
</button>
</div>
</div>
<aside id="ac-gn-searchresults" class="ac-gn-searchresults" data-string-quicklinks="Quick Links" data-string-suggestions="Suggested Searches" data-string-noresults=""></aside>
</div>
<button id="ac-gn-searchview-close" class="ac-gn-searchview-close" aria-label="Cancel Search">
<span class="ac-gn-searchview-close-wrapper">
<span class="ac-gn-searchview-close-left"></span>
<span class="ac-gn-searchview-close-right"></span>
</span>
</button>
</aside>
<aside class="ac-gn-bagview" data-analytics-region="bag">
<div class="ac-gn-bagview-scrim">
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-small"></span>
</div>
<div class="ac-gn-bagview-content" id="ac-gn-bagview-content">
</div>
</aside>
</div>
</nav>
<div class="ac-gn-blur"></div>
<div id="ac-gn-curtain" class="ac-gn-curtain"></div>
<div id="ac-gn-placeholder" class="ac-nav-placeholder"></div>
<script type="text/javascript" src="/ac/globalnav/5/en_US/scripts/ac-globalnav.built.js"></script>
<script src="/metrics/ac-analytics/2.9.0/scripts/ac-analytics.js" type="text/javascript" charset="utf-8"></script>
<main class="main" role="main">
<section
class="homepage-section collection-module"
data-module-template="ribbon"
data-analytics-activitymap-region-id="ribbon"
data-analytics-region="ribbon"
>
<div
data-unit-id="covid-19"
data-analytics-section-engagement="name:ribbon-covid-19"
>
<div class="module-content">
<div class="ribbon-covid-19">
<div class="section-content section-content-covid">
<p><script>
(function() {
function touchAvailable() {
return !!(('ontouchstart' in window) ||
(window.DocumentTouch && document instanceof window.DocumentTouch) ||
(window.navigator.maxTouchPoints > 0) ||
(window.navigator.msMaxTouchPoints > 0));
}
let shouldShowLink = touchAvailable() && (window.navigator.vendor.indexOf('Apple') > -1)
if(shouldShowLink) {
document.documentElement.classList.add('app-store-link')
}
})();
</script>
<style>
.variant-a {
display: inline-block;
}
.variant-b {
display: none;
}
.app-store-link .variant-b {
display: inline-block;
}
.app-store-link .variant-a {
display: none;
}
</style>
<style>
/* large */
.covid-ribbon-copy {
margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
max-width: 980px;
}
.covid-ribbon-copy.variant-a {
max-width: 900px;
}
/* medium */
@media only screen and (max-width: 1068px) {
.covid-ribbon-copy {
max-width: 700px;
}
.covid-ribbon-copy.variant-a {
max-width: 630px;
}
}
/* small */
@media only screen and (max-width: 734px) {
.covid-ribbon-copy {
width: 96%;
padding-top: 35px;
padding-bottom: 35px;
max-width: 643px;
}
.covid-ribbon-copy.variant-a {
max-width: inherit;
}
}
</style>
<span class="covid-ribbon-copy variant-a"><strong>We’re open for you.</strong><br>Our retail stores are closed, but you can buy our products here online and get fast, free delivery. If you need help finding the right product or have a question on your order, chat online with a Specialist or call <span class="nowrap" role="text">1-800-MY-APPLE.</span> <br class="small-hide">For service and support, visit <a href="https://support.apple.com" target="_self" data-analytics-region="learn more" data-analytics-title="learn more about support.apple.com">support.apple.com</a>.</span>
<span class="covid-ribbon-copy variant-b"><strong>We’re open for you.</strong><br>Our retail stores are closed, but you can buy our products here online or on the <a href="https://www.apple.com/xc/applestoreapp/">Apple Store app</a> and get fast, free delivery. If you need help finding the right product or have a question on your order, chat online with a Specialist or call <span class="nowrap" role="text">1-800-MY-APPLE.</span> <br class="small-hide">For service and support, visit <a href="https://support.apple.com" target="_self" data-analytics-region="learn more" data-analytics-title="learn more about support.apple.com">support.apple.com</a>.</span>
</p>
</div>
</div>
</div>
</div>
</section>
<section
class="homepage-section collection-module"
data-module-template="heroes"
data-analytics-activitymap-region-id="hero"
data-analytics-region="hero"
>
<div
data-unit-id="iphone-11-pro-spring"
data-analytics-section-engagement="name:hero-iphone-11-pro-spring"
>
<div class="module-content">
<div
class="unit-wrapper theme-dark background"
>
<a
class="unit-link"
href="/iphone-11-pro/" target="_self" rel="follow" data-analytics-region="learn more"
> </a>
<div class="unit-copy-wrapper">
<h2
class="headline"
>iPhone 11 Pro</h2>
<h3
class="subhead"
role="presentation"
>Pro cameras. Pro display. Pro performance.</h3>
<p class="price">
<span
aria-label="From twenty eight dollars and twenty nine cents per month or six hundred and seventy nine dollars with trade in.
"
role="text"
>From <span class="nowrap">$28.29/mo.
</span> or <span class="nowrap">$679
</span> with trade‑in.</span><sup><a href="#footnote-1" class="footnote">1</a></sup>
</p>
<div
class="cta-links"
>
<a
class="icon icon-after icon-chevronright"
href="/iphone-11-pro/" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="Learn more about iPhone 11 Pro"
aria-label="Learn more about iPhone 11 Pro"
>Learn more</a>
<a
class="icon icon-after icon-chevronright"
href="/us/shop/goto/buy_iphone/iphone_11_pro" target="_self" rel="follow" data-analytics-region="buy"
data-analytics-title="Buy iPhone 11 Pro"
aria-label="Buy iPhone 11 Pro"
>Buy</a>
</div>
</div>
<div
class="unit-image-wrapper"
>
<figure
class="unit-image unit-image-iphone-11-pro-spring-hero"
data-anim-lazy-image
>
</figure>
</div>
</div>
</div>
</div>
<div
data-unit-id="iphone-11-spring"
data-analytics-section-engagement="name:hero-iphone-11-spring"
>
<div class="module-content">
<div
class="unit-wrapper"
>
<a
class="unit-link"
href="/iphone-11/" target="_self" rel="follow" data-analytics-region="learn more"
> </a>
<div class="unit-copy-wrapper">
<h2
class="headline"
>iPhone 11</h2>
<h3
class="subhead"
role="presentation"
>Just the right amount of everything.</h3>
<p class="price">
<span
aria-label="From eighteen dollars and seventy cents per month or four hundred and forty nine dollars with trade in.
"
role="text"
>From <span class="nowrap">$18.70/mo.
</span> or <span class="nowrap">$449
</span> with trade‑in.</span><sup><a href="#footnote-1" class="footnote">1</a></sup>
</p>
<div
class="cta-links"
>
<a
class="icon icon-after icon-chevronright"
href="/iphone-11/" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="Learn more about iPhone 11"
aria-label="Learn more about iPhone 11"
>Learn more</a>
<a
class="icon icon-after icon-chevronright"
href="/us/shop/goto/buy_iphone/iphone_11" target="_self" rel="follow" data-analytics-region="buy"
data-analytics-title="Buy iPhone 11"
aria-label="Buy iPhone 11"
>Buy</a>
</div>
</div>
<div
class="unit-image-wrapper"
>
<figure
class="unit-image unit-image-iphone-11-spring-hero"
data-anim-lazy-image
>
</figure>
</div>
</div>
</div>
</div>
<div
data-unit-id="ipad-pro"
data-analytics-section-engagement="name:hero-ipad-pro"
>
<div class="module-content">
<div
class="unit-wrapper"
>
<a
class="unit-link"
href="/ipad-pro/" target="_self" rel="follow" data-analytics-region="learn more"
> </a>
<div class="unit-copy-wrapper">
<span class="violator-frameless">New</span>
<h2
class="headline"
>iPad Pro</h2>
<h3
class="subhead"
role="presentation"
>Your next computer is not a computer.</h3>
<div
class="cta-links"
>
<a
class="icon icon-after icon-chevronright"
href="/ipad-pro/" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="Learn more about iPad Pro"
aria-label="Learn more about iPad Pro"
>Learn more</a>
<a
class="icon icon-after icon-chevronright"
data-analytics-title="Buy iPad Pro"
href="/us/shop/goto/ipad_pro/select" target="_self" rel="follow" data-analytics-region="buy"
data-analytics-title="Buy iPad Pro"
aria-label="Buy iPad Pro"
>Buy</a>
</div>
<div class="list-captions single">
<p class="caption">Magic Keyboard coming in May</p>
</div>
</div>
<div
class="unit-image-wrapper"
>
<figure
class="unit-image unit-image-ipad-pro-hero"
data-anim-lazy-image
>
</figure>
</div>
</div>
</div>
</div>
</section>
<section
class="homepage-section collection-module"
data-module-template="promos"
data-analytics-activitymap-region-id="promo"
data-analytics-region="promo"
>
<div
data-unit-id="covid-19-app"
data-analytics-section-engagement="name:promo-covid-19-app"
>
<div class="module-content">
<div class="unit-wrapper">
<a class="unit-link" href="/covid19/" target="_self" rel="follow" data-analytics-region="learn more" aria-hidden="true" tabindex="-1"> </a>
<div class="unit-copy-wrapper">
<h5 class="logo-image logo-image-covid-19-app-logo" role="text"><span class="visuallyhidden">Apple and CDC logo</span></h5>
<h4 class="headline">Evaluate COVID‑19 symptoms and understand next steps.</h4>
<div class="cta-links">
<a class="icon icon-after icon-chevronright" href="/covid19/" target="_self" rel="follow" data-analytics-region="learn more" data-analytics-title="Get started now">Get started now</a>
<a class="icon icon-after icon-playcircle" id="film-cdc-response-tile" data-analytics-id="film-cdc-response" data-films-modal-link="" href="/105/media/us/home/2020/61d216dc-2bbb-4e02-8199-dd7ba1212b42/films/social-distancing/social-distancing-tpl-cc-us-2020_1280x720h.mp4" target="_self" rel="follow" data-analytics-region="learn more" data-analytics-title="Watch the PSA">Watch the PSA</a>
</div>
</div>
</div>
</div>
</div>
<div
data-unit-id="watch-series-5"
data-analytics-section-engagement="name:promo-watch-series-5"
>
<div class="module-content">
<div
class="unit-wrapper"
>
<a
class="unit-link"
href="/apple-watch-series-5/" target="_self" rel="follow" data-analytics-region="learn more"
> </a>
<div class="unit-copy-wrapper">
<h4
class="logo-image logo-image-watch-series-5-logo-tile-aws5 headline"
><span class="visuallyhidden">Apple Watch Series 5</span></h4>
<h5
class="subhead"
role="text"
>With the Always-On Retina display.<br>You’ve never seen a watch like this.</h5>
<div
class="cta-links"
>
<a
class="icon icon-after icon-chevronright"
href="/apple-watch-series-5/" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="Learn more about Apple Watch Series 5"
aria-label="Learn more about Apple Watch Series 5"
>Learn more</a>
<a
class="icon icon-after icon-chevronright"
href="/us/shop/goto/apple_watch" target="_self" rel="follow" data-analytics-region="buy"
data-analytics-title="Buy Apple Watch Series 5"
aria-label="Buy Apple Watch Series 5"
>Buy</a>
</div>
</div>
<div
class="unit-image-wrapper"
>
<figure
class="unit-image unit-image-watch-series-5-tile-aws5"
data-anim-lazy-image
>
</figure>
</div>
</div>
</div>
</div>
<div
data-unit-id="macbook-air-updated"
data-analytics-section-engagement="name:promo-macbook-air-updated"
>
<div class="module-content">
<div
class="unit-wrapper"
>
<a
class="unit-link"
href="/macbook-air/" target="_self" rel="follow" data-analytics-region="learn more"
> </a>
<div class="unit-copy-wrapper">
<span class="violator-frameless">New</span>
<h4
class="headline"
>MacBook Air</h4>
<h5
class="subhead"
role="presentation"
>Twice the speed. Twice the storage.</h5>
<p class="price">
<span role="presentation">Now from $999</span>
</p>
<div
class="cta-links"
>
<a
class="icon icon-after icon-chevronright"
href="/macbook-air/" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="Learn more about MacBook Air"
aria-label="Learn more about MacBook Air"
>Learn more</a>
<a
class="icon icon-after icon-chevronright"
href="/us/shop/goto/buy_mac/macbook_air" target="_self" rel="follow" data-analytics-region="buy"
data-analytics-title="Buy MacBook Air"
aria-label="Buy MacBook Air"
>Buy</a>
</div>
</div>
<div
class="unit-image-wrapper"
>
<figure
class="unit-image unit-image-macbook-air-updated-tile"
data-anim-lazy-image
>
</figure>
</div>
</div>
</div>
</div>
<div
data-unit-id="tv-plus-before-dark"
data-analytics-section-engagement="name:promo-tv-plus-before-dark"
>
<div class="module-content">
<div
class="unit-wrapper theme-dark"
>
<a
class="unit-link"
data-analytics-exit-link
href="https://tv.apple.com/show/umc.cmc.5yqy2wv4w7l0v4x5mn3le8l1y?itscg=10000&itsct=atv-0-apl_hp-hro_try-apl-hbd-200224" target="_self" rel="follow" data-analytics-region="learn more"
> </a>
<div class="unit-copy-wrapper">
<h4
class="logo-image logo-image-tv-plus-logo-light headline"
><span class="visuallyhidden">Apple TV plus</span></h4>
<div class="tile-copy">
<h5
class="logo-image logo-image-tv-plus-before-dark-logo"
role="text"
><span class="visuallyhidden">Home Before Dark</span></h5>
<div
class="cta-links"
>
<a
class="icon icon-after icon-playcircle trailer"
data-analytics-exit-link
href="https://tv.apple.com/show/umc.cmc.5yqy2wv4w7l0v4x5mn3le8l1y?itscg=10000&itsct=atv-0-apl_hp-hro_try-apl-hbd-200224" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="An Apple TV+ Original. Watch the Home Before Dark trailer."
aria-label="An Apple TV+ Original. Watch the Home Before Dark trailer."
>Watch the trailer</a>
<a
class="icon icon-after icon-playcircle premiere"
data-analytics-exit-link
href="https://tv.apple.com/show/umc.cmc.5yqy2wv4w7l0v4x5mn3le8l1y?itscg=10000&itsct=atv-0-apl_hp-hro_try-apl-hbd-200224" target="_self" rel="follow" data-analytics-region="learn more"
data-analytics-title="Watch all episodes of Home Before Dark now on the TV+ app"
aria-label="Watch all episodes of Home Before Dark now on the TV+ app"
>All episodes now on the Apple TV app</a>
</div>
</div>
</div>
<div
class="unit-image-wrapper"
>
<figure
class="unit-image unit-image-tv-plus-before-dark-tile"
data-anim-lazy-image
>
</figure>
</div>
</div>
</div>
</div>
<div
data-unit-id="arcade-ultimate"
data-analytics-section-engagement="name:promo-arcade-ultimate"
>
<div class="module-content">
<div class="unit-wrapper theme-dark background">
<a
class="unit-link"
href="/apple-arcade/"
target="_self"
rel="follow"
data-analytics-region="learn more"
aria-hidden="true"
tabindex="-1"
data-rid-store='{"288":"arc-0-apl_hp-lrn_tle-apl-avl-190919"}'
> </a>
<div class="unit-copy-wrapper">
<h4 class="logo-image logo-image-arcade-ultimate-logo headline"><span class="visuallyhidden">Apple Arcade</span></h4>
<h5 class="subhead" role="presentation">A new world to play in. 100+ ad-free games.</h5>
<div class="cta-links">
<a
class="icon icon-after icon-chevronright"
href="/apple-arcade/"
target="_self"
rel="follow"
data-analytics-region="learn more"
data-analytics-title="Learn more about Apple Arcade"
aria-label="Learn more about Apple Arcade"
data-rid-store='{"288":"arc-0-apl_hp-lrn_tle-apl-avl-190919"}'
>Learn more</a>
<a
class="try-button-ultimate"
data-apply-action="itms-apps://?action=arcade&itscg=10000&itsct=arc-0-apl_hp-try_tle-apl-avl-191007"
href="#arcade-modal"
data-analytics-title="try it free"
data-analytics-click="prop3: try it free modal"