'' ...
==== Media ====
* https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Img_role
=== ASCII Art ===
[[ASCII Art]] is obviously a pain for [[screenreader]] users.
* If it's just decorative, you could add ''aria-hidden="true"'' to the '''' element, which will hide it.
* If you're using ASCII Art to represent text you could add ''aria-label="[text]"'' to tell the screenreader what the text says.
* If it's an image you can use ''role="img"'' to tell the screenreader.
* If your drawing's inside a '''' you might want to use the ''aria-labelledby="[id]"'' or ''aria-describedby="[id]"'' attributes to point to the id on an element that has a description, for example a ''''
==== prefers-reduced-motion ====
You can change that way things like animations play for people that have set certain preferences i ntheir browser or OS.
* https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
===== Things I Forget =====
**Number one thing I forget is to check this page!**
To nest a list, the sublist needs to be inside an '''' element, not the '''', '''', or ''''. Seems ugly to me, but makes //a kind// of sense. So:
I'm always forgetting that '''' is the element that pairs with ''''. Keep thinking it'll be something like replace (rel, rep??)
===== See Also =====
* [[html_editor]]
* [[css]]
{{tag>accessibility guide HTML hypermedia language markup-language}}