small style and word fixes to framer accessibility

This commit is contained in:
2026-09-12 10:53:25 -07:00
parent 1a0898c214
commit a3b9d20dfb
@@ -23,7 +23,7 @@ Accessibility **must** be built from the start of a project. Retrofitting a proj
## Semantic HTML ## Semantic HTML
Most HTML elements are semantic, that is, they convey meaning. Labeling something an `<h1>` doesn't just style it like a header; it also means that assistive tech can understand it to be a header (this also helps with SEO - a lot of things that improve accessibility improve SEO as well). See the Mozilla docs for a [list of semantic HTML elements](https://developer.mozilla.org/en-US/docs/Glossary/Semantics#semantic_elements). Most HTML elements are semantic, that is, they convey meaning. Labeling something an `<h1>` doesn't just style it like a header; it also means that AT can understand it to be a header (this also helps with SEO - a lot of things that improve accessibility improve SEO as well). See the Mozilla docs for a [list of semantic HTML elements](https://developer.mozilla.org/en-US/docs/Glossary/Semantics#semantic_elements).
Notably, `<div>`s and `<span>`s are not semantic and convey no meaning. They are used for styling alone. Notably, `<div>`s and `<span>`s are not semantic and convey no meaning. They are used for styling alone.