-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3077 lines (2640 loc) · 180 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 name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Cache Control for Security and Performance -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>Index - Accessible User Interface Guidelines (AUIG)</title>
<!-- Updated Meta Description to Reflect AUIG -->
<meta name="description" content="AUIG provides comprehensive accessibility guidelines for designing and developing inclusive user interfaces. Ensure your digital platforms are accessible, user-friendly, and compliant with current accessibility standards.">
<meta name="keywords" content="accessible UI, accessibility guidelines, inclusive design, accessible user interfaces, UI accessibility, AUIG, accessible web design, inclusive user experience">
<!-- Link to Main Stylesheet with Versioning for Cache Busting -->
<link rel="stylesheet" href="../styles/main.css?v=1.7">
<!-- PrismJS Light Theme -->
<link id="prism-light-theme" href="../styles/external/prism-light-theme.css" rel="stylesheet" />
<!-- PrismJS Dark Theme -->
<link id="prism-dark-theme" href="../styles/external/prism-dark-theme.css" rel="stylesheet" disabled />
<!-- Favicon -->
<link rel="icon" href="../images/favi_1.ico" type="image/x-icon">
<link rel="canonical" href="https://auig.org/">
<!-- Structured Data for Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Accessible User Interface Guidelines (AUIG)",
"url": "https://www.auig.org",
"logo": "https://www.auig.org/images/auig_light.svg",
"description": "AUIG provides comprehensive accessibility guidelines for designing and developing inclusive user interfaces, ensuring digital platforms are accessible, user-friendly, and compliant with current accessibility standards.",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "",
"contactType": "Customer Service",
"areaServed": "UK",
"availableLanguage": ["English"]
}
}
</script>
</head>
<body data-theme="light">
<!-- Skip to main content link -->
<a href="#main-content" class="sr-only">Skip to main content</a>
<!-- Accessibility Controls -->
<aside class="controls" aria-label="Accessibility controls">
<img class="logo" width="auto" height="40" src="/images/auig_light.svg" alt="AUIG logo" />
<span>
<button id="decrease-font" aria-label="Decrease text size">A-</button>
<button id="increase-font" aria-label="Increase text size">A+</button>
<button id="toggle-theme" aria-label="Toggle dark and light mode">🌙</button>
</span>
</aside>
<div class="container">
<!-- Sidebar -->
<aside id="toc" class="nav" aria-label="Table of Contents">
<nav id="nav" class="navlist" aria-label="Main Navigation">
<button id="toggleButton" class="toggle-button">
<div class="icon icon-hamburger"><span>Menu</span></div>
<div class="icon icon-close"><span>Close</span></div>
</button>
<!-- Sidebar -->
<h3 class="sr-only" itemprop="name">Table of Contents</h3>
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- ListItem 0 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="0" />
<a href="/pages/index.html" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>Home</strong></span>
</a>
</li>
<!-- ListItem 1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1" />
<a href="/pages/abstract.html" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>Abstract</strong></span>
</a>
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.1" />
<a href="/pages/support.html" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>Support</strong></span>
</a>
</li>
<!-- ListItem 2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="2" />
<a href="/pages/introduction.html" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>How To Use These Guidelines</strong></span>
</a>
</li>
<!-- ListItem 3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="3" />
<a href="/pages/iconsUsed.html" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>Guideline Icons Used</strong></span>
</a>
</li>
<!-- ListItem 4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="4" />
<a href="/pages/global.html" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>1. Global Settings</strong></span>
</a>
<!-- Nested list for Global Settings -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Appearance Settings (1.1) -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.1" />
<a href="/pages/global.html#1.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>1.1 Appearance Settings</strong></span>
</a>
<ul>
<!-- Sub Item: 1.1.1 Customised Themes -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.1.1" />
<a href="/pages/global.html#1.1.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.1.1 Customised Themes</span>
</a>
</li>
<!-- Sub Item: 1.1.2 Contrast -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.1.2" />
<a href="/pages/global.html#1.1.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.1.2 Contrast</span>
</a>
</li>
<!-- Sub Item: 1.1.3 Flashing Images -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.1.3" />
<a href="/pages/global.html#1.1.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.1.3 Flashing Images</span>
</a>
</li>
</ul>
</li>
<!-- General Settings (1.2) -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.2" />
<a href="/pages/global.html#1.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>1.2 General Settings</strong></span>
</a>
<ul>
<!-- Sub Item: 1.2.1 Keyboard Access -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.2.1" />
<a href="/pages/global.html#1.2.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.2.1 Keyboard Access</span>
</a>
</li>
<!-- Sub Item: 1.2.2 Skip Links -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.2.2" />
<a href="/pages/global.html#1.2.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.2.2 Skip Links</span>
</a>
</li>
<!-- Sub Item: 1.2.3 Responsive Design -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.2.3" />
<a href="/pages/global.html#1.2.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.2.3 Responsive Design</span>
</a>
</li>
</ul>
</li>
<!-- Localization Settings (1.3) -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.3" />
<a href="/pages/global.html#1.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>1.3 Localisation Settings</strong></span>
</a>
</li>
<!-- Meta Data Settings (1.4) -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.4" />
<a href="/pages/global.html#1.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>1.4 Meta Data</strong></span>
</a>
<ul>
<!-- Sub Item: 1.4.1 Meta -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.4.1" />
<a href="/pages/global.html#1.4.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.4.1 Meta</span>
</a>
</li>
<!-- Sub Item: 1.4.2 Title -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.4.2" />
<a href="/pages/global.html#1.4.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">1.4.2 Title</span>
</a>
</li>
</ul>
</li>
<!-- Consistent Layout (1.5) -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="1.5" />
<a href="/pages/global.html#1.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>1.5 Consistent Layout</strong></span>
</a>
</li>
</ul>
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<!-- Position of the main list item -->
<meta itemprop="position" content="5" />
<!-- Link to the "2. Elements" section -->
<!-- <a href="#html-elements" itemprop="item" itemscope itemtype="https://schema.org/WebPage">-->
<span itemprop="name"><strong>2. Elements</strong></span>
<!-- </a>-->
<!-- Nested list representing subsections of "2. Elements" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub ListItem 2.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1" />
<a href="/pages/imagesMultimedia.html#2.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.1 Multimedia</strong></span>
</a>
<!-- Nested list for subsections under "2.1 Multimedia" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.1.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.1" />
<a href="/pages/imagesMultimedia.html#2.1.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.1 Alternative Representation</span>
</a>
</li>
<!-- Sub Sub ListItem 2.1.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.2" />
<a href="/pages/imagesMultimedia.html#2.1.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.2 Avoid Autoplay</span>
</a>
</li>
<!-- Sub Sub ListItem 2.1.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.3" />
<a href="/pages/imagesMultimedia.html#2.1.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.3 Controls</span>
</a>
</li>
<!-- Sub Sub ListItem 2.1.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.4" />
<a href="/pages/imagesMultimedia.html#2.1.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.4 Flashing Items</span>
</a>
</li>
<!-- Sub Sub ListItem 2.1.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.5" />
<a href="/pages/imagesMultimedia.html#2.1.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.5 Video Subtitles (Captions)</span>
</a>
</li>
<!-- Sub Sub ListItem 2.1.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.6" />
<a href="/pages/imagesMultimedia.html#2.1.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.6 Video Transcripts</span>
</a>
</li>
<!-- Sub Sub ListItem 2.1.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.1.7" />
<a href="/pages/imagesMultimedia.html#2.1.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.1.7 Sign Language</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2" />
<a href="/pages/forms.html#2.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.2 Forms</strong></span>
</a>
<!-- Nested list for subsections under "2.2 Forms" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.2.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.1" />
<a href="/pages/forms.html#2.2.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.1 Proper Labeling of Form Elements</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.2" />
<a href="/pages/forms.html#2.2.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.2 Keyboard Navigation</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.3" />
<a href="/pages/forms.html#2.2.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.3 Clear Error Identification and Description</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.4" />
<a href="/pages/forms.html#2.2.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.4 Grouping Related Form Elements</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.5" />
<a href="/pages/forms.html#2.2.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.5 Accessible Form Validation</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.6" />
<a href="/pages/forms.html#2.2.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.6 Instructions and Help Text</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.7" />
<a href="/pages/forms.html#2.2.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.7 Accessible Captchas</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.8" />
<a href="/pages/forms.html#2.2.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.8 Time Limits</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.9 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.9" />
<a href="/pages/forms.html#2.2.9" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.9 Sufficient Color Contrast and Visual Design</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.10 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.10" />
<a href="/pages/forms.html#2.2.10" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.10 Accessible Date Pickers and Other Widgets</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.11 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.11" />
<a href="/pages/forms.html#2.2.11" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.11 Assistive Technology Compatibility</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.12 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.12" />
<a href="/pages/forms.html#2.2.12" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.12 Support for Cognitive Disabilities</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.13 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.13" />
<a href="/pages/forms.html#2.2.13" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.13 Responsive and Mobile-Friendly Design</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.14 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.14" />
<a href="/pages/forms.html#2.2.14" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.14 Multi-Step Forms Accessibility</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.15 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.15" />
<a href="/pages/forms.html#2.2.15" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.15 Accessible Dropdowns and Select Menus</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.16 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.16" />
<a href="/pages/forms.html#2.2.16" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.16 Accessible Radio Buttons and Checkboxes</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.17 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.17" />
<a href="/pages/forms.html#2.2.17" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.17 Accessible File Uploads</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.18 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.18" />
<a href="/pages/forms.html#2.2.18" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.18 Accessible Buttons and Submission Controls</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.19 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.19" />
<a href="/pages/forms.html#2.2.19" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.19 Multi-Language Support</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.20 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.20" />
<a href="/pages/forms.html#2.2.20" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.20 Privacy and Security Considerations</span>
</a>
</li>
<!-- Sub Sub ListItem 2.2.21 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.2.21" />
<a href="/pages/forms.html#2.2.21" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.2.21 Financial Accessibility</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3" />
<a href="#2.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.3 Tables</strong></span>
</a>
<!-- Nested list for subsections under "2.3 Tables" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.3.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.1" />
<a href="/pages/tables.html#2.3.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.1 Table Structure</span>
</a>
</li>
<!-- Sub Sub ListItem 2.3.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.2" />
<a href="/pages/tables.html#2.3.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.2 Table Headers and Scope</span>
</a>
</li>
<!-- Sub Sub ListItem 2.3.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.3" />
<a href="/pages/tables.html#2.3.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.3 Captions and Summaries</span>
</a>
</li>
<!-- Sub Sub ListItem 2.3.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.4" />
<a href="/pages/tables.html#2.3.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.4 Avoiding Complex Structures</span>
</a>
</li>
<!-- Sub Sub ListItem 2.3.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.5" />
<a href="/pages/tables.html#2.3.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.5 Responsive Tables</span>
</a>
</li>
<!-- Sub Sub ListItem 2.3.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.6" />
<a href="/pages/tables.html#2.3.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.6 Keyboard Navigation</span>
</a>
</li>
<!-- Sub Sub ListItem 2.3.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.3.7" />
<a href="/pages/tables.html#2.3.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.3.7 Accessible Data Presentation</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4" />
<a href="/pages/headings.html#2.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.4 Headings</strong></span>
</a>
<!-- Nested list for subsections under "2.4 Headings" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.4.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.1" />
<a href="/pages/headings.html#2.4.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.1 Hierarchical Structure</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.2" />
<a href="/pages/headings.html#2.4.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.2 Descriptive Headings</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.3" />
<a href="/pages/headings.html#2.4.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.3 Avoid Skipping Heading Levels</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.4" />
<a href="/pages/headings.html#2.4.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.4 Semantic Use of Headings</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.5" />
<a href="/pages/headings.html#2.4.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.5 Accessible Navigation</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.6" />
<a href="/pages/headings.html#2.4.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.6 Consistent Styling</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.7" />
<a href="/pages/headings.html#2.4.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.7 ARIA Roles and Landmarks</span>
</a>
</li>
<!-- Sub Sub ListItem 2.4.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.4.8" />
<a href="/pages/headings.html#2.4.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.4.8 Testing and Validation</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5" />
<a href="/pages/links.html#2.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.5 Links</strong></span>
</a>
<!-- Nested list for subsections under "2.5 Links" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.5.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.1" />
<a href="/pages/links.html#2.5.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.1 Descriptive Link Text</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.2" />
<a href="/pages/links.html#2.5.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.2 Avoiding Redundant Links</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.3" />
<a href="/pages/links.html#2.5.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.3 Visible Focus Indicators</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.4" />
<a href="/pages/links.html#2.5.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.4 Link Purpose and Destination</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.5" />
<a href="/pages/links.html#2.5.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.5 Distinguishable Links</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.6" />
<a href="/pages/links.html#2.5.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.6 Keyboard Accessibility</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.7" />
<a href="/pages/links.html#2.5.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.7 Opening Links in New Tabs</span>
</a>
</li>
<!-- Sub Sub ListItem 2.5.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.5.8" />
<a href="/pages/links.html#2.5.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.5.8 Testing Links for Accessibility</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6" />
<a href="/pages/buttons.html#2.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.6 Buttons</strong></span>
</a>
<!-- Nested list for subsections under "2.6 Buttons" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.6.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.1" />
<a href="/pages/buttons.html#2.6.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.1 Descriptive Button Labels</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.2" />
<a href="/pages/buttons.html#2.6.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.2 Button Size and Click Area</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.3" />
<a href="/pages/buttons.html#2.6.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.3 Keyboard Accessibility</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.4" />
<a href="/pages/buttons.html#2.6.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.4 Visible Focus Indicators</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.5" />
<a href="/pages/buttons.html#2.6.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.5 ARIA Attributes for Buttons</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.6" />
<a href="/pages/buttons.html#2.6.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.6 Accessible Button States</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.7" />
<a href="/pages/buttons.html#2.6.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.7 Consistent Styling</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.8" />
<a href="/pages/buttons.html#2.6.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.8 Button Types and Roles</span>
</a>
</li>
<!-- Sub Sub ListItem 2.6.9 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.6.9" />
<a href="/pages/buttons.html#2.6.9" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.6.9 Testing Buttons for Accessibility</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7" />
<a href="/pages/lists.html#2.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.7 Lists</strong></span>
</a>
<!-- Nested list for subsections under "2.7 Lists" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.7.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.1" />
<a href="/pages/lists.html#2.7.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.1 Proper Use of List Elements</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.2" />
<a href="/pages/lists.html#2.7.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.2 Nesting Lists Appropriately</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.3" />
<a href="/pages/lists.html#2.7.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.3 Descriptive List Items</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.4" />
<a href="/pages/lists.html#2.7.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.4 Accessible List Styling</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.5" />
<a href="/pages/lists.html#2.7.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.5 ARIA Roles for Complex Lists</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.6" />
<a href="/pages/lists.html#2.7.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.6 Keyboard Navigation for Interactive Lists</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.7" />
<a href="/pages/lists.html#2.7.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.7 Consistent List Structure</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.8" />
<a href="/pages/lists.html#2.7.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.8 Testing Lists for Accessibility</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.9 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.9" />
<a href="/pages/lists.html#2.7.9" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.9 Avoiding Overly Complex Lists</span>
</a>
</li>
<!-- Sub Sub ListItem 2.7.10 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.7.10" />
<a href="/pages/lists.html#2.7.10" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.7.10 Semantic List Use</span>
</a>
</li>
</ul>
</li>
<!-- Sub ListItem 2.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8" />
<a href="/pages/semantic.html#2.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name"><strong>2.8 Semantic HTML Elements</strong></span>
</a>
<!-- Nested list for subsections under "2.8 Semantic HTML Elements" -->
<ul itemscope itemtype="https://schema.org/ItemList">
<!-- Sub Sub ListItem 2.8.1 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.1" />
<a href="/pages/semantic.html#2.8.1" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.1 <header> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.2 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.2" />
<a href="/pages/semantic.html#2.8.2" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.2 <nav> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.3 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.3" />
<a href="/pages/semantic.html#2.8.3" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.3 <main> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.4 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.4" />
<a href="/pages/semantic.html#2.8.4" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.4 <section> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.5 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.5" />
<a href="/pages/semantic.html#2.8.5" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.5 <article> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.6 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.6" />
<a href="/pages/semantic.html#2.8.6" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.6 <aside> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.7 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.7" />
<a href="/pages/semantic.html#2.8.7" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.7 <footer> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.8 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.8" />
<a href="/pages/semantic.html#2.8.8" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.8 ARIA Landmarks</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.9 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.9" />
<a href="/pages/semantic.html#2.8.9" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.9 <figure> and <figcaption> Elements</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.10 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.10" />
<a href="/pages/semantic.html#2.8.10" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.10 <time> Element</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.11 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<meta itemprop="position" content="5.8.11" />
<a href="/pages/semantic.html#2.8.11" itemprop="item" itemscope itemtype="https://schema.org/WebPage">
<span itemprop="name">2.8.11 <details> and <summary> Elements</span>
</a>
</li>
<!-- Sub Sub ListItem 2.8.12 -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">