--- id: 5f332b23c2045fb843337579 title: Step 7 challengeType: 0 dashedName: step-7 --- # --description-- Since the `p` element added in the previous step provides supplemental information about the cafe, nest both the `h1` and `p` elements in a `header` element. # --hints-- You should have an opening `
` tag. ```js assert(code.match(/
/i)); ``` You should have a closing `
` tag. ```js assert(code.match(/<\/header>/i)); ``` Your `h1` element should be nested in your `header` element. ```js const header = document.querySelectorAll('header')[0]; assert(header.children[0].tagName === 'H1'); ``` Your `p` element should be nested in your `header` element. ```js const header = document.querySelectorAll('header')[0]; assert(header.children[1].tagName === "P"); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu --fcc-editable-region--

CAMPER CAFE

Est. 2020

--fcc-editable-region-- ```