French Vanilla
3.00
--- id: 5f3ef6e0e9629bad967cd71e title: Step 60 challengeType: 0 dashedName: step-60 --- # --description-- You can add a fallback value for the font-family by adding another font name separated by a comma. Fallbacks are used in instances where the initial is not found/available. Add the fallback font `serif` after the `Impact` font. # --hints-- You should add `serif` as a fallback for the `Impact` font. ```js const fontFamily = new __helpers.CSSHelp(document).getStyle('h1, h2')?.getPropertyValue('font-family'); assert(fontFamily === 'Impact, serif'); ``` # --seed-- ## --seed-contents-- ```html