p {
font-family: 'Comic Sans MS', Arial, sans-serif;
}The browser tries to use 'Comic Sans MS' first. If it's not available, it tries 'Arial'. Since 'Comic Sans MS' is missing but 'Arial' is present, the text uses 'Arial'.
h1 {
font-family: 'Times New Roman', Georgia, serif;
}The font-family property lists three fonts: 'Times New Roman', Georgia, and the generic family serif.
Option A selects all <p> elements inside any <section> with class 'intro'.
Option A looks for <p> elements with classes 'section' and 'intro', which is incorrect.
Option A selects direct child <p> of any element with class 'intro', which may not be a section.
Option A selects <p> elements with class 'intro' inside any section, not paragraphs inside section.intro.
h2 {
font-family: 'Courier New', monospace;
font-weight: bold;
font-style: italic;
}The font-family sets a monospace font ('Courier New' or monospace fallback).
font-weight: bold makes the text bold.
font-style: italic makes the text italic.
'Open Dyslexic' is a font designed to improve readability for dyslexic users.
Including fallbacks like Arial and sans-serif ensures text displays if 'Open Dyslexic' is unavailable.
Other fonts like Comic Sans or Times New Roman are not specifically designed for dyslexia.