Skip to content

Commit

Permalink
Added beginner friendly accessibility questions (#966)
Browse files Browse the repository at this point in the history
* Added beginner friendly accessibility questions

* Updated accessibility-quiz.ts

I removed the question I was requested to remove and kept the other stronger one.
  • Loading branch information
Markson17 committed Jun 19, 2024
1 parent b12b22d commit 132b9ec
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/data/accessibility-quiz.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
const accessibilityQuiz = [
{
"Question": "Why is using semantic HTML important for accessibility?",
"Answer": "It provides meaning and structure to web content, aiding screen readers and other assistive technologies.",
"Distractor1": "It makes the website load faster.",
"Distractor2": "It helps with SEO optimization.",
"Distractor3": "It reduces the need for CSS.",
"Explanation": "Semantic HTML uses tags that clearly describe their purpose, which improves the accessibility of web content for users relying on assistive technologies.",
"Link": "https://www.freecodecamp.org/news/semantic-html5-elements/"
},
{
Question: "What does ASAP mean in the context of accessibility?",
Answer: "As Semantic As Possible",
Expand Down

0 comments on commit 132b9ec

Please sign in to comment.