Step 17 Building Quiz

Change the font for both the h1 and h2 elements to Verdana, and use another web-safe font in the sans-serif family as a fallback. not understanding

Also, add a border-bottom of 4px solid #dfdfe2 to h2elements to make the sections distinct.

h1 h2 {
color: Verdana, sans-serif;
}
h2 {
border-bottom: 4px solid #dfdfe2;
}

I don’t know which step you are doing, but you can’t use the color property to change the font

Step 17

Typeface plays an important role in the accessibility of a page. Some fonts are easier to read than others, and this is especially true on low-resolution screens.

Change the font for both the h1 and h2 elements to Verdana, and use another web-safe font in the sans-serif family as a fallback.

Also, add a border-bottom of 4px solid #dfdfe2 to h2elements to make the sections distinct.
h1 h2 {
color: Verdana, sans-serif;
}
h2 {
border-bottom: 4px solid #dfdfe2;
}

this is selecting h2 that are inside h1
and you still can’t use color to set the font