--- id: 5f3326b143638ee1a09ff1e3 title: Part 4 challengeType: 0 dashedName: part-4 --- # --description-- To prepare to create some actual content, add a `body` element below the `head` element. # --hints-- You should have an opening `` tag. ```js assert(code.match(//i)); ``` You should have a closing `` tag. ```js assert(code.match(/<\/body>/i)); ``` You should not change your `head` element. Make sure you did not delete your closing tag. ```js assert(code.match(//i)); assert(code.match(/<\/head>/i)); ``` Your `body` element should come after your `head` element. ```js assert(code.match(/<\/head>[.\n\s]*/im)); ``` # --seed-- ## --seed-contents-- ```html --fcc-editable-region-- Camper Cafe Menu --fcc-editable-region-- ```