--- id: 5f332a88dc25a0fd25c7687a title: Step 6 challengeType: 0 dashedName: step-6 --- # --description-- Il nome del bar รจ `CAMPER CAFE`. Aggiungi un elemento `h1` all'interno dell'elemento `main`. Dagli il nome del bar in lettere maiuscole per farlo risaltare. # --hints-- Dovresti avere un tag di apertura `

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

/i)); ``` Dovresti avere un tag di chiusura `

`. ```js assert(code.match(/<\/h1>/i)); ``` Non dovresti cambiare l'elemento `main` esistente. ```js assert($('main').length === 1); ``` L'elemento `h1` dovrebbe essere annidato nell'elemento `main`. ```js assert($('h1')[0].parentElement.tagName === "MAIN"); ``` L'elemento `h1` dovrebbe avere il testo `CAMPER CAFE`. ```js assert(code.match(/

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