--- id: 61fd66c687e610436494c6f1 title: Step 3 challengeType: 0 dashedName: step-3 --- # --description-- All'interno dell'elemento `section` aggiungi un elemento `h1` con un elemento `span` annidato. # --hints-- L'elemento `section` dovrebbe avere un elemento `h1`. ```js assert(document.querySelector('section')?.children?.[0]?.localName === 'h1'); ``` L'elemento `h1` dovrebbe avere un elemento `span`. ```js assert(document.querySelector('h1')?.children?.[0]?.localName === 'span'); ``` # --seed-- ## --seed-contents-- ```html Balance Sheet
--fcc-editable-region--
--fcc-editable-region--
``` ```css ```