Email Design Email Accessibility 1 — Questions and Answers
Question 1: What does 'email accessibility' primarily aim to achieve?
- Making emails load faster on slow connections
- Ensuring emails can be read and used by people with disabilities (Correct answer)
- Reducing the spam score of marketing emails
- Improving open rates for all subscribers
Correct answer: Ensuring emails can be read and used by people with disabilities
Email accessibility ensures that subscribers with visual, cognitive, or motor disabilities can fully read and interact with email content.
Question 2: Which HTML attribute provides descriptive text for images used by screen readers in emails?
- title
- aria-label
- alt (Correct answer)
- longdesc
Correct answer: alt
The alt attribute provides descriptive alternative text for images, which screen readers read aloud to visually impaired subscribers.
Question 3: What should be entered as alt text for a purely decorative image in an email?
- The word 'decorative'
- A description of what the image shows
- An empty string (alt="") (Correct answer)
- The word 'image'
Correct answer: An empty string (alt="")
Decorative images should use an empty alt attribute (alt="") so screen readers skip them, avoiding unnecessary clutter in the audio output.
Question 4: What ARIA role should be applied to the main content table in an accessible HTML email?
- role="navigation"
- role="presentation" (Correct answer)
- role="main"
- role="banner"
Correct answer: role="presentation"
Adding role="presentation" to layout tables tells screen readers the table is used for visual layout only, not for presenting tabular data.
Question 5: What does the <lang> attribute on the <html> tag help with in email accessibility?
- It selects the correct font for the language
- It tells screen readers and translation tools what language the email is written in (Correct answer)
- It prevents spam filters from flagging multilingual content
- It switches the email layout direction automatically
Correct answer: It tells screen readers and translation tools what language the email is written in
The lang attribute specifies the email's language, helping screen readers use the correct pronunciation rules and enabling auto-translation tools.
Question 6: Why should email links always have descriptive anchor text rather than 'Click here'?
- 'Click here' links are blocked by spam filters
- Descriptive text helps screen reader users understand the destination without additional context (Correct answer)
- Generic text increases bounce rates
- It prevents accidental double-clicks on mobile
Correct answer: Descriptive text helps screen reader users understand the destination without additional context
Screen reader users often navigate a list of links; descriptive anchor text tells them where each link leads without needing to read surrounding content.
What does 'email accessibility' primarily aim to achieve?