--- id: 5f33294a6af5e9188dbdb8f3 title: Part 5 challengeType: 0 dashedName: part-5 --- # --description-- The name of the cafe is `CAMPER CAFE`. Add an `h1` element within your `body` element. Give it the name of the cafe in capitalized letters to make it stand out. # --hints-- You should have an opening `

` tag. ```js assert(code.match(/

/i)); ``` You should have a closing `

` tag. ```js assert(code.match(/<\/h1>/i)); ``` You should not change your existing `body` element. ```js assert($('body').length === 1); ``` Your `h1` element should be nested in your `body` element. ```js assert($('h1')[0].parentElement.tagName === "BODY"); ``` Your `h1` element should have the text `CAMPER CAFE`. ```js assert(code.match(/

CAMPER CAFE<\/h1>/)); ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu --fcc-editable-region-- --fcc-editable-region-- ```