Accessibility Components

I have been seeing things like aria-label, role, aria-labelledby for some time now but recently showed interest in learning it for accessibility reasons, but I need resources to learn them properly. I have only have faint idea about them, really. Anyone willing to help me?
6 Replies
vince
vince10mo ago
I dont know much about accessibility at all but the official specs were pretty good honestly when I read them so it should be a decent start
Adedoyin Adeyemo Muhammed
Yes @vince It is a cool concept to learn and incorporate in our codes. It helps up better make our websites accessible to everyone
briancross
briancross10mo ago
Read up on semantic HTML first since the first rule of ARIA is not using it. Also the accessibility tree in Chrome is very powerful and useful to see how assistive technologies would interpret the page.
briancross
briancross10mo ago
Chrome Developers
Full accessibility tree in Chrome DevTools - Chrome Developers
In this blog post we present the new full-page accessibility tree in DevTools, and explain the design and implementation of this tree.
briancross
briancross10mo ago
web.dev
Semantic HTML
Using the correct HTML elements to describe your document content.
Adedoyin Adeyemo Muhammed
Oh, @brian.cross thank you so much, this is helpful