--- id: 60b69a66b6ddb80858c5157c title: Step 6 challengeType: 0 dashedName: step-6 --- # --description-- All'interno del tag body, aggiungi un elemento `div`. Dagli un `id` di `back-wall`. # --hints-- Dovresti aggiungere esattamente 1 elemento `div`. ```js assert(document.querySelectorAll('div').length === 1); ``` L'elemento `div` dovrebbe avere il valore `id` di `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); } ```