--- id: 60b69a66b6ddb80858c5157c title: Step 6 challengeType: 0 dashedName: step-6 --- # --description-- Within your body tag, add a `div` element. Give it an `id` of `back-wall`. # --hints-- You should add exactly 1 `div` element. ```js assert(document.querySelectorAll('div').length === 1); ``` Your `div` element should have the `id` value of `back-wall`. ```js assert(document.querySelector('div')?.getAttribute('id') === 'back-wall'); ``` # --seed-- ## --seed-contents-- ```html Picasso Painting --fcc-editable-region-- --fcc-editable-region-- ``` ```css body { background-color: rgb(184, 132, 46); } ```