- What is accessibility?
Accessibility is making sure that your site is available to anyone, regardless of certain disabilities and if they have a mobile phone or slow network speeds.
- How do people interpret websites without vision?
Those who are Visually impaired often use magnifier applications or screen readers to read the text aloud.
- How does semantic HTML help make websites accessible?
They are easier to process for CPUs, so that people with slower network speeds do not have to spend as much CPU power to operate your site. It also improves SEO (Search Engine Optimization) so that your website is easier to find.
- Name a few practices to avoid when writing HTML.
Avoid using dashes, make sure to expand any abbreviations, always right out the full acronyms at least once or twice. Also avoid using <div>
- What is a tab index?
A tabindex makes content accessible from using keyboard navigation. The tabindex also allows you to place in what order you want the tabs to be in, only when accessing them through a keyboard navigation.