-
Notifications
You must be signed in to change notification settings - Fork 30
/
navigation.yml
1197 lines (1190 loc) · 40.2 KB
/
navigation.yml
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
- name:
en: "Accessibility Fundamentals"
es: "Fundamentos de accesibilidad"
fr: "Fondamentaux de l'accessibilité"
pl: "Podstawy dostępności"
translate: true
pages:
- name:
en: "Accessibility Fundamentals"
es: "Fundamentos de accesibilidad"
fr: "Fondamentaux de l'accessibilité"
pl: "Podstawy dostępności"
url: "/fundamentals/"
translate: true
- name: Changelog
url: "/fundamentals/changelog/"
hide: true
- name:
en: "Introduction to Accessibility"
ar: "مقدمة لولوجية الويب"
cs: "Úvod do webové přístupnosti"
de: "Einführung in das barrierefreie Web"
es: "Introducción a la Accesibilidad Web"
fr: "Introduction à l'accessibilité du web"
id: "Pengenalan ke Aksesibilitas Web"
pl: "Wprowadzenie do dostępności internetowej"
ru: "ВВЕДЕНИЕ В ВЕБ-ДОСТУПНОСТЬ"
zh-hans: "Web无障碍简介"
url: "/fundamentals/accessibility-intro/"
translate: true
pages:
- name:
en: "Video Introduction"
ar: "مقدمة فيديو"
cs: "Video úvod"
de: "Video-Einführung"
el: "Εισαγωγή Βίντεο"
es: "Vídeo de Introducción"
fr: "Vidéo : introduction"
id: "Video Pengantar"
ja: "紹介"
ko: "소개 영상"
nl: "Video-introductie"
pl: "Film Wprowadzenie"
pt-BR: 'Vídeo de Introdução'
ru: "Введение"
zh-hans: '视频介绍'
url: "/videos/standards-and-benefits/"
translate: true
pages:
- name:
en: Changelog
de: "Änderungsprotokoll"
nl: "Changelog."
el: "Change log"
zh-hans: '修改日志'
fr: "Changements"
ja: "変更履歴"
es: "Registro de cambios"
url: "/videos/standards-and-benefits/changelog/"
hide: true
- name: "Changelog"
url: "/fundamentals/accessibility-intro/changelog/"
hide: true
- name: "Accessibility is About People"
url: "/people/"
translate: true
pages:
- name:
en: "Perspectives Videos"
fr: "Vidéos d'illustration"
url: "/perspective-videos/"
translate: true
pages:
- name:
en: "Keyboard Compatibility"
fr: "Compatibilité avec le clavier"
url: "/perspective-videos/keyboard/"
translate: true
- name:
en: "Colors with Good Contrast"
fr: "Couleurs bien constratées"
url: "/perspective-videos/contrast/"
translate: true
- name:
en: "Clear Layout and Design"
fr: "Mise en page et design clairs"
url: "/perspective-videos/layout/"
translate: true
- name:
en: "Text to Speech"
fr: "Synthèse vocale"
url: "/perspective-videos/speech/"
translate: true
- name:
en: "Large Links, Buttons, and Controls"
fr: "Liens, boutons et composants assez grands"
url: "/perspective-videos/controls/"
translate: true
- name:
en: "Video Captions"
fr: "Sous-titres de vidéo"
url: "/perspective-videos/captions/"
translate: true
- name:
en: "Customizable Text"
fr: "Texte personnalisable"
url: "/perspective-videos/customizable/"
translate: true
- name:
en: "Speech Recognition"
fr: "Reconnaissance vocale"
url: "/perspective-videos/voice/"
translate: true
- name:
en: "Understandable Content"
fr: "Contenu compréhensible"
url: "/perspective-videos/understandable/"
translate: true
- name:
en: "Notifications and Feedback"
fr: "Notifications et retours"
url: "/perspective-videos/notifications/"
translate: true
- name:
en: "Acknowledgements"
url: "/perspective-videos/acknowledgements/"
hide: true
- name:
en: "Changelog"
url: "/perspective-videos/changelog/"
hide: true
- name:
en: "How People with Disabilities Use the Web"
fr: "Comment les personnes handicapées utilisent le web"
es: "Cómo usan la web las personas con discapacidad"
url: "/people-use-web/"
translate: true
pages:
- name: "Acknowledgements"
url: "/people-use-web/acknowledgements/"
hide: true
- name: "Changelog"
url: "/people-use-web/changelog/"
hide: true
- name:
en: "Stories of Web Users"
fr: "Quelques utilisateurs du Web"
es: "Historias de usuarios de la web"
url: "/people-use-web/user-stories/"
translate: true
pages:
- name:
en: "Ade's Story"
url: "/people-use-web/user-stories/story-one/"
translate: true
- name:
en: "Ian's Story"
url: "/people-use-web/user-stories/story-two/"
translate: true
- name:
en: "Lakshmi's Story"
url: "/people-use-web/user-stories/story-three/"
translate: true
- name:
en: "Lexie's Story"
url: "/people-use-web/user-stories/story-four/"
translate: true
- name:
en: "Sophie's Story"
url: "/people-use-web/user-stories/story-five/"
translate: true
- name:
en: "Dhruv's Story"
url: "/people-use-web/user-stories/story-six/"
translate: true
- name:
en: "Marta's Story"
url: "/people-use-web/user-stories/story-seven/"
translate: true
- name:
en: "Stefan's Story"
url: "/people-use-web/user-stories/story-eight/"
translate: true
- name:
en: "Elias' Story"
url: "/people-use-web/user-stories/story-nine/"
translate: true
- name:
en: "Diverse Abilities and Barriers"
fr: "Des capacités et des points bloquants variés"
url: "/people-use-web/abilities-barriers/"
translate: true
pages:
- name:
en: "Auditory"
url: "/people-use-web/abilities-barriers/auditory/"
translate: true
- name:
en: "Cognitive and Learning"
url: "/people-use-web/abilities-barriers/cognitive/"
translate: true
- name:
en: "Physical"
url: "/people-use-web/abilities-barriers/physical/"
translate: true
- name:
en: "Speech"
url: "/people-use-web/abilities-barriers/speech/"
translate: true
- name:
en: "Visual"
url: "/people-use-web/abilities-barriers/visual/"
translate: true
- name:
en: "Tools and Techniques"
fr: "Outils et techniques"
url: "/people-use-web/tools-techniques/"
translate: true
pages:
- name:
en: "Perception"
url: "/people-use-web/tools-techniques/perception/"
translate: true
- name:
en: "Presentation"
url: "/people-use-web/tools-techniques/presentation/"
translate: true
- name:
en: "Input"
url: "/people-use-web/tools-techniques/input/"
translate: true
- name:
en: "Interaction"
url: "/people-use-web/tools-techniques/navigation/"
translate: true
- name: Older Users and Accessibility
url: "/older-users/"
pages:
- name: How WCAG 2 Applies
url: "/older-users/developing/"
- name: Literature Review
url: "/older-users/literature/"
- name: Changelog
url: "/older-users/changelog/"
hide: true
- name: Accessibility, Usability, Inclusion
url: "/fundamentals/accessibility-usability-inclusion/"
- name:
en: Components of Web Accessibility
fr: "Composantes de l'accessibilité du Web"
ko: "웹 접근성 요소"
pl: "Komponenty dostępności Internetu"
url: "/fundamentals/components/"
translate: true
pages:
- name:
en: Illustration Descriptions
fr: "Descriptions des illustrations"
pl: "Opisy ilustracji"
url: "/fundamentals/components/examples/"
translate: true
hide: true
- name:
en: "Accessibility Principles"
ar: "مبادئ الوصول"
cs: "Zásady přístupnosti"
fr: "Principes d’accessibilité"
es: "Principios de accesibilidad"
ko: "접근성 원칙"
ru: "Принципы доступности"
zh-hans: "无障碍原则"
url: "/fundamentals/accessibility-principles/"
translate: true
pages:
- name:
en: Changelog
de: "Änderungsprotokoll"
nl: "Changelog."
el: "Change log"
zh-hans: '修改日志'
fr: "Changements"
ja: "変更履歴"
es: "Registro de cambios"
url: "/fundamentals/accessibility-principles/changelog/"
hide: true
- name: Research
url: "/research/"
pages:
- name: User Requirements
url: "/research/user-requirements/"
- name: AI and Accessibility
url: "/research/ai2023/"
- name: Digital Accessibility Courses
url: "/courses/"
pages:
- name: W3C Foundations Online Course
url: "/courses/foundations-course/"
- name: Course List
url: "/courses/list/"
pages:
- name: Submit a course
url: "/courses/submission/"
hide: true
- name:
en: "Planning & Policies"
es: "Planificación y Políticas"
fr: "Organisation & politiques"
translate: true
pages:
- name:
en: "Planning & Policies"
es: "Planificación y Políticas"
fr: "Organisation & politiques"
url: "/planning/"
translate: true
- name: Changelog
url: "/planning/changelog/"
hide: true
- name:
en: "Approaches for Interim Repairs"
fr: "Stratégies de réparations provisoires"
url: "/planning/interim-repairs/"
translate: true
- name: Planning and Managing Accessibility
url: "/planning-and-managing/"
translate: true
pages:
- name: Initiate
url: "/planning-and-managing/initiate/"
translate: true
- name: Plan
url: "/planning-and-managing/plan/"
translate: true
- name: Implement
url: "/planning-and-managing/implement/"
translate: true
- name: Sustain
url: "/planning-and-managing/sustain/"
translate: true
- name: Authoring Tools List
url: "/tools-list/authoring/"
- name: Authoring Tool Submission Form
url: "/tools-list/authoring/submit-a-tool/"
hide: true
- name: Developing an Organizational Policy
url: "/planning/org-policies/"
pages:
- name: Example
url: "/planning/org-policies/example/"
- name: Developing an Accessibility Statement
url: "/planning/statements/"
pages:
- name: Generator Tool
url: "/planning/statements/generator/"
- name: Minimal Example
url: "/planning/statements/minimal-example/"
- name: Complete Example
url: "/planning/statements/complete-example/"
- name: Changelog
url: "/planning/statements/changelog/"
hide: true
- name:
en: "Involving Users for Better Accessibility"
fr: "Impliquer les utilisateurs pour améliorer l'accessibilité"
url: "/planning/involving-users/"
translate: true
- name: International Laws & Policies
url: "/policies/"
- name:
en: "Design & Develop"
es: "Diseñar y Desarrollar"
fr: "Concevoir & développer"
translate: true
pages:
- name:
en: "Design & Develop"
es: "Diseñar y Desarrollar"
fr: "Concevoir & développer"
url: "/design-develop/"
translate: true
- name: Changelog
url: "/design-develop/changelog/"
hide: true
- name:
en: "Tips for Getting Started"
fr: "Conseils pour démarrer"
id: "Kiat Memulai"
url: "/tips/"
translate: true
hide: true
- name:
en: "Tips for Writing"
fr: "Conseils pour l'écriture"
id: "Kiat Menulis"
url: "/tips/writing/"
translate: true
- name:
en: "Tips for Designing"
fr: "Conseils pour le design"
id: "Kiat Mendesain"
ja: "デザインのためのヒント"
url: "/tips/designing/"
translate: true
- name:
en: "Tips for Developing"
fr: "Conseils pour le développement"
id: "Kiat Pengembangan"
url: "/tips/developing/"
translate: true
- name:
en: "Audio & Video Media"
fr: "Médias audio et vidéo"
url: "/media/av/"
translate: true
pages:
- name:
en: "User Needs"
fr: "Besoins utilisateurs"
url: "/media/av/users-orgs/"
translate: true
- name:
en: "Planning"
fr: "Planification"
url: "/media/av/planning/"
translate: true
- name:
en: "Audio Content & Video Content"
fr: "Contenu audio & contenu vidéo"
url: "/media/av/av-content/"
translate: true
- name:
en: "Description"
fr: "Description"
url: "/media/av/description/"
translate: true
- name:
en: "Captions/Subtitles"
fr: "Sous-titres"
url: "/media/av/captions/"
translate: true
- name:
en: "Transcripts"
fr: "Transcriptions"
url: "/media/av/transcripts/"
translate: true
- name:
en: "Transcribing Audio to Text"
fr: "Transcrire un contenu audio en texte"
url: "/media/av/transcribing/"
translate: true
- name:
en: "Sign Languages"
fr: "Langues des signes"
url: "/media/av/sign-languages/"
translate: true
- name:
en: "Media Player"
fr: "Lecteur multimédia"
url: "/media/av/player/"
translate: true
- name:
en: Acknowledgements
url: "/media/av/acknowledgements/"
hide: true
- name:
en: Changelog
ja: "変更履歴"
url: "/media/av/changelog/"
hide: true
- name: Tutorials
url: "/tutorials/"
pages:
- name: Page Structure
url: "/tutorials/page-structure/"
pages:
- name: Page Regions
url: "/tutorials/page-structure/regions/"
- name: Labeling Regions
url: "/tutorials/page-structure/labels/"
- name: Headings
url: "/tutorials/page-structure/headings/"
- name: Content Structure
url: "/tutorials/page-structure/content/"
- name: Full Example
url: "/tutorials/page-structure/example/"
- name: "Menus"
url: "/tutorials/menus/"
pages:
- name: Structure
url: "/tutorials/menus/structure/"
- name: Styling
url: "/tutorials/menus/styling/"
- name: Fly-Out Menus
url: "/tutorials/menus/flyout/"
- name: Application Menus
url: "/tutorials/menus/application-menus/"
- name: Application Menu Example & Code
url: "/tutorials/menus/application-menus-code/"
- name: Images
url: "/tutorials/images/"
pages:
- name: Informative Images
url: "/tutorials/images/informative/"
- name: Decorative Images
url: "/tutorials/images/decorative/"
- name: Functional Images
url: "/tutorials/images/functional/"
- name: Images of Text
url: "/tutorials/images/textual/"
- name: Complex Images
url: "/tutorials/images/complex/"
pages:
- name: Example
url: "/tutorials/images/examples/2014-first-qtr/"
hide: true
- name: Groups of Images
url: "/tutorials/images/groups/"
- name: Image Maps
url: "/tutorials/images/imagemap/"
pages:
- name: Example
url: "/tutorials/images/examples/imagemap/"
hide: true
- name:
en: 'An <code style="color: inherit;">alt</code> Decision Tree'
de: 'Ein <code style="color: inherit;">alt</code> -Entscheidungsbaum'
fr: 'Arbre décisionnel pour l’attribut <code style="color: inherit;">alt</code>'
id: 'Pohon Keputusan Penggunaan <code style="color: inherit;">alt</code>'
ja: '<code style="color: inherit;">alt</code> 의사결정나무'
ko: 'Ein <code style="color: inherit;">alt</code> -Entscheidungsbaum'
url: "/tutorials/images/decision-tree/"
translate: true
- name: Tips and Tricks
url: "/tutorials/images/tips/"
- name: Tables
url: "/tutorials/tables/"
pages:
- name: One Header
url: "/tutorials/tables/one-header/"
- name: Two Headers
url: "/tutorials/tables/two-headers/"
pages:
- name: "Complete “Table with header cells in the top row only” Example"
url: "/tutorials/tables/examples/headertoprowfirstcol/"
hide: true
- name: Irregular Headers
url: "/tutorials/tables/irregular/"
- name: Multi-level Headers
url: "/tutorials/tables/multi-level/"
- name: Caption & Summary
url: "/tutorials/tables/caption-summary/"
- name: Tips and Tricks
url: "/tutorials/tables/tips/"
- name: "Forms"
url: "/tutorials/forms/"
pages:
- name: Labeling Controls
url: "/tutorials/forms/labels/"
- name: Grouping Controls
url: "/tutorials/forms/grouping/"
- name: Form Instructions
url: "/tutorials/forms/instructions/"
- name: Validating Input
url: "/tutorials/forms/validation/"
- name: User Notifications
url: "/tutorials/forms/notifications/"
pages:
- name: Password Example
url: "/tutorials/forms/examples/password/"
hide: true
- name: Multi-page Forms
url: "/tutorials/forms/multi-page/"
- name: Custom Controls
url: "/tutorials/forms/custom-controls/"
- name: "Carousels"
url: "/tutorials/carousels/"
pages:
- name: Structure
url: "/tutorials/carousels/structure/"
- name: Functionality
url: "/tutorials/carousels/functionality/"
- name: Animations
url: "/tutorials/carousels/animations/"
- name: Styling
url: "/tutorials/carousels/styling/"
- name: Working Example
url: "/tutorials/carousels/working-example/"
- name: Complete Code
url: "/tutorials/carousels/full-code/"
- name: "Changelog"
url: "/tutorials/changelog/"
hide: true
- name: "Acknowledgements"
url: "/tutorials/acknowledgements/"
hide: true
- name:
en: "Test & Evaluate"
es: "Probar y Evaluar"
fr: "Tester et évaluer"
translate: true
pages:
- name:
en: "Test & Evaluate"
es: "Probar y Evaluar"
fr: "Tester et évaluer"
url: "/test-evaluate/"
translate: true
- name: Changelog
url: "/test-evaluate/changelog/"
hide: true
- name: Easy Checks – A First Review
url: "/test-evaluate/preliminary/"
- name: Easy Checks - Draft Update
url: "/test-evaluate/easy-checks/"
pages:
- name: Image Alternative Text
url: "/test-evaluate/easy-checks/image-alt/"
- name: Page Title
url: "/test-evaluate/easy-checks/title/"
- name: Heading Structure
url: "/test-evaluate/easy-checks/headings/"
- name: Color Contrast
url: "/test-evaluate/easy-checks/color-contrast/"
- name: Skip Link
url: "/test-evaluate/easy-checks/skip-link/"
- name: Keyboard Focus
url: "/test-evaluate/easy-checks/keyboard-focus/"
- name: Language of Page
url: "/test-evaluate/easy-checks/language/"
- name: Zoom
url: "/test-evaluate/easy-checks/zoom/"
- name: Captions
url: "/test-evaluate/easy-checks/captions/"
- name: Transcripts
url: "/test-evaluate/easy-checks/transcripts/"
- name: Audio Description
url: "/test-evaluate/easy-checks/description/"
- name: Form Field Labels
url: "/test-evaluate/easy-checks/form-field-labels/"
- name: Required Fields
url: "/test-evaluate/easy-checks/required-fields/"
- name:
en: "Evaluation Tools"
fr: "Outils d'évaluation"
pl: "Narzędzia oceny"
url: "/test-evaluate/tools/"
translate: true
pages:
- name:
en: "Selecting Evaluation Tools"
pl: "Wybór narzędzi oceny dostępności cyfrowej"
url: "/test-evaluate/tools/selecting/"
- name: List of Evaluation Tools
url: "/test-evaluate/tools/list/"
- name:
en: "Conformance Evaluation, Reports"
fr: "Évaluation de la conformité, rapports"
url: "/test-evaluate/conformance/"
translate: true
pages:
- name: WCAG-EM Conformance Methodology
url: "/test-evaluate/conformance/wcag-em/"
- name: WCAG-EM Report Tool
url: "https://www.w3.org/WAI/eval/report-tool/"
- name: Report Template
url: "/test-evaluate/report-template/"
- name: Using Combined Expertise
url: "/test-evaluate/combined-expertise/"
- name:
en: "Involving Users"
fr: "Impliquer les utilisateurs"
url: "/test-evaluate/involving-users/"
translate: true
- name: Acknowledgements
url: "/test-evaluate/acknowledgements/"
hide: true
- name:
en: "Teach & Advocate"
es: "Enseñar y Promover"
fr: "Former et promouvoir"
translate: true
pages:
- name:
en: "Teach & Advocate"
es: "Enseñar y Promover"
fr: "Former et promouvoir"
url: "/teach-advocate/"
translate: true
- name: Changelog
url: "/teach-advocate/changelog/"
hide: true
- name: Making Events Accessible Checklist
url: "/teach-advocate/accessible-presentations/"
translate: true
- name: Curricula on Web Accessibility
url: "/curricula/"
pages:
- name: Foundation Modules
url: "/curricula/foundation-modules/"
pages:
- name: What is Web Accessibility
url: "/curricula/foundation-modules/what-is-web-accessibility/"
- name: People and Digital Technology
url: "/curricula/foundation-modules/people-and-digital-technology/"
- name: Business Case and Benefits
url: "/curricula/foundation-modules/business-case-and-benefits/"
- name: Principles, Standards, and Checks
url: "/curricula/foundation-modules/principles-standards-and-checks/"
- name: Getting Started with Accessibility
url: "/curricula/foundation-modules/getting-started-with-accessibility/"
- name: Developer Modules
url: "/curricula/developer-modules/"
pages:
- name: Page Structure
url: "/curricula/developer-modules/page-structure/"
- name: Menus
url: "/curricula/developer-modules/menus/"
- name: Images
url: "/curricula/developer-modules/images/"
- name: Tables
url: "/curricula/developer-modules/tables/"
- name: Forms
url: "/curricula/developer-modules/forms/"
- name: Custom Widgets
url: "/curricula/developer-modules/custom-widgets/"
- name: Rich Applications
url: "/curricula/developer-modules/rich-applications/"
- name: Designer Modules
url: "/curricula/designer-modules/"
pages:
- name: Visual Design
url: "/curricula/designer-modules/visual-design/"
- name: Information Design
url: "/curricula/designer-modules/information-design/"
- name: Navigation Design
url: "/curricula/designer-modules/navigation-design/"
- name: Interaction Design
url: "/curricula/designer-modules/interaction-design/"
- name: Images and Graphics
url: "/curricula/designer-modules/images-and-graphics/"
- name: Multimedia and Animations
url: "/curricula/designer-modules/multimedia-and-animations/"
- name: Forms Design
url: "/curricula/designer-modules/forms-design/"
- name: Content Author Modules
url: "/curricula/content-author-modules/"
pages:
- name: Clear Content
url: "/curricula/content-author-modules/clear-content/"
- name: Structure
url: "/curricula/content-author-modules/structure/"
- name: Forms
url: "/curricula/content-author-modules/forms/"
- name: Images
url: "/curricula/content-author-modules/images/"
- name: Data Tables
url: "/curricula/content-author-modules/data-tables/"
- name: Multimedia
url: "/curricula/content-author-modules/multimedia/"
- name: Develop Accessibility Training
url: "/teach-advocate/accessibility-training/"
pages:
- name: Topics
url: "/teach-advocate/accessibility-training/topics/"
- name: Presentation Outlines
url: "/teach-advocate/accessibility-training/presentation-outlines/"
- name: Workshop Outline
url: "/teach-advocate/accessibility-training/workshop-outline/"
# - name: Presentations You Can Use
# url: "/teach-advocate/presentations-to-use/"
- name: Before and After Demo (BAD)
url: "https://www.w3.org/WAI/demos/bad/"
- name: Contacting Inaccessible Websites
url: "/teach-advocate/contact-inaccessible-websites/"
- name:
en: "Business Case"
es: "Caso de negocios"
fr: "Bénéfices business"
url: "/business-case/"
translate: true
pages:
- name:
en: "Bibliography"
fr: "Bibliographie"
url: "/business-case/bibliography/"
- name: Acknowledgements
url: "/business-case/acknowledgements/"
hide: true
# pages:
# - name: Social Factors
# url: "/business-case/social-factors/"
# - name: Technical Factors
# url: "/business-case/technical-factors/"
# - name: Financial Factors
# url: "/business-case/financial-factors/"
# - name: Legal & Policy Factors
# url: "/business-case/legal-policy-factors/"
# - name: Resources
# url: "/business-case/resources/"
- name:
en: "Standards/<wbr>Guidelines"
es: "Estándares/<wbr>Pautas"
fr: "Standards/<wbr>Règles"
translate: true
pages:
- name:
ar: "معايير/إرشادات"
en: "Standards/<wbr>Guidelines"
cs: "Standardy/Pokyny"
es: "Estándares/<wbr>Pautas"
fr: "Standards/<wbr>Règles"
id: "Standar/Pedoman"
ko: "표준/지침"
ru: "Стандарты/<wbr>Рекомендации"
zh-hans: "标准/指南"
url: "/standards-guidelines/"
translate: true
- name: Changelog
url: "/standards-guidelines/changelog/"
hide: true
- name:
en: "Web Content – WCAG 2"
fr: "Contenus web – WCAG 2"
es: "Contenido Web – WCAG 2"
pl: "Treść Web – WCAG 2"
url: "/standards-guidelines/wcag/"
translate: true
pages:
- name: "How to Meet WCAG 2 (Quick Reference)"
url: "https://www.w3.org/WAI/WCAG21/quickref/"
- name:
en: "At a Glance"
es: "De un vistazo"
fr: "En bref"
pl: "W skrócie"
url: "/standards-guidelines/wcag/glance/"
- name:
en: "The Documents"
pl: "Dokumenty"
url: "/standards-guidelines/wcag/docs/"
- name: "Applying to Non-Web ICT"
url: "/standards-guidelines/wcag/non-web-ict/"
- name: New in 2.2
url: "/standards-guidelines/wcag/new-in-22/"
translate: true
- name:
en: "New in 2.1"
es: "Novedades en 2.1"
url: "/standards-guidelines/wcag/new-in-21/"
translate: true
- name: Translations
url: "/standards-guidelines/wcag/translations/"
- name: "Commenting"
url: "/standards-guidelines/wcag/commenting/"
- name: "Conformance Logos"
url: "/standards-guidelines/wcag/conformance-logos/"
- name: FAQ
url: "/standards-guidelines/wcag/faq/"
translate: true
- name: WCAG 3 Draft
url: "/standards-guidelines/wcag/wcag3-intro/"
translate: true
- name:
en: "Authoring Tools – ATAG"
fr: "Outils d'édition – ATAG"
pl: "Narzędzia autorskie – ATAG"
url: "/standards-guidelines/atag/"
translate: true
pages:
- name:
en: "At a Glance"
fr: "En bref"
pl: "W skrócie"
url: "/standards-guidelines/atag/glance/"
translate: true
- name: "For LMS"
url: "/standards-guidelines/atag/education/"
- name: "For No-Code Tools"
url: "/standards-guidelines/atag/no-code/"
- name: "For Social Media Platforms"
url: "/standards-guidelines/atag/social-media/"
- name:
en: "User Agents – UAAG"
pl: "Programy użytkownika – UAAG"
url: "/standards-guidelines/uaag/"
translate: true
- name: WAI-ARIA
url: "/standards-guidelines/aria/"
translate: true
- name: Evaluation – ACT & EARL
url: "/standards-guidelines/evaluation/"
translate: true
pages:
- name: Accessibility Conformance Testing – ACT
url: "/standards-guidelines/act/"
translate: true
- name: WCAG ACT Rules
url: "/standards-guidelines/act/rules/"
translate: true
hide: true
pages:
- name: "Rule: HTML page has title"
url: "/standards-guidelines/act/rules/html-page-has-title-2779a5/"
hide: true
- name: "Rule: Image button has accessible name"
url: "/standards-guidelines/act/rules/image-button-accessible-name-59796f/"
hide: true
- name: "Rule: HTML page has ‘lang’ attribute"
url: "/standards-guidelines/act/rules/html-page-lang-b5c3f8/"
hide: true
- name: "Rule: HTML page language is valid"
url: "/standards-guidelines/act/rules/html-page-lang-valid-bf051a/"
hide: true
- name: "Rule: HTML page ‘lang’ and ‘xml:lang’ attributes have matching values"
url: "/standards-guidelines/act/rules/html-page-lang-xml-lang-match-5b7ae0/"
hide: true
- name: Evaluation and Report Language – EARL
url: "/standards-guidelines/earl/"
- name: WAI-Adapt
url: "/adapt/"
translate: true
- name: Pronunciation
url: "/pronunciation/"
- name: Standards Harmonization is Essential
url: "/standards-guidelines/harmonization/"
- name:
en: "W3C Process for Developing Standards"
fr: "Processus du W3C pour élaborer les standards"
url: "/standards-guidelines/w3c-process/"
- name: Referencing and Linking to Standards
url: "/standards-guidelines/linking/"
- name: Cognitive Accessibility at W3C
url: "/cognitive/"
translate: true
- name:
ar: "إمكانية الوصول للأجهزة المحمولة في W3C"
en: "Mobile Accessibility at W3C"
cs: "Mobilní přístupnost ve W3C"
es: "Accesibilidad Móvil en el W3C"
fr: "Accessibilité mobile chez W3C"
id: "Aksesibilitas Perangkat Seluler W3C"
ko: "W3C의 모바일 접근성"
ru: "Решения консорциума W3C по обеспечению доступности на мобильных устройствах"
zh-hans: "W3C 移动端无障碍"
url: "/standards-guidelines/mobile/"
translate: true
pages:
- name: "Changelog"
url: "/standards-guidelines/mobile/changelog/"
hide: true
- name:
en: News
mainnav: false
pages:
- name: "News"
url: "/news/"
pages:
- name: "To subscribe:"
url: "/news/subscribe/"
- name:
en: "About W3C WAI"
mainnav: false
pages:
- name: About WAI
url: "/about/"
- name: "What We're Working On"
url: "/update/"
- name: Participating
url: "/about/participating/"
- name: Groups
url: "/about/groups/"
pages:
- name: 'AGWG: Accessibility Guidelines <abbr title="Working Group">WG</abbr>'
url: "/about/groups/agwg/"
pages:
- name: Charter
url: "https://www.w3.org/WAI/GL/charter"
- name: Task Forces
url: "/about/groups/agwg/task-forces/"
- name: Decision Policy
url: "/about/groups/agwg/decision-policy/"
- name: Communication
url: "/about/groups/agwg/communication/"
- name: How to Participate (Join)
url: "/about/groups/agwg/participate/"
- name: 'APA: Accessible Platform <abbr title="Working Group">WG</abbr>'
url: "/about/groups/apawg/"
pages:
- name: Charter
url: "https://www.w3.org/2023/07/apa-wg-charter"
- name: Task Forces
url: "/about/groups/apawg/task-forces/"
- name: Decision Policy