--- id: 5f344fc1520b6719f2e35605 title: Step 9 challengeType: 0 dashedName: step-9 --- # --description-- Ci saranno due sezioni nel menù, una per il caffè e una per i dessert. Aggiungi un elemento `section` all'interno dell'elemento `main` in modo da avere uno spazio in cui inserire tutti i caffè disponibili. # --hints-- Dovresti avere un tag di apertura `
`. ```js assert(code.match(//i)); ``` Dovresti avere un tag di chiusura `
`. ```js assert(code.match(/<\/section\s*>/i)); ``` Non dovresti cambiare l'elemento `main` esistente. Assicurati di non aver eliminato il tag di chiusura. ```js assert($('main').length === 1); ``` L'elemento `section` dovrebbe essere all'interno dell'elemento `main`. ```js const main = document.querySelectorAll('main')?.[0]; assert(main.children[0].tagName === 'SECTION'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu

CAMPER CAFE

Est. 2020

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