--- id: 5dfa37b9eacea3f48c6300b0 title: Step 20 challengeType: 0 dashedName: step-20 --- # --description-- Dopo l'elemento `h3` con il testo `Things cats love:`, aggiungi un elemento lista non ordinata (`ul`). Nota che a questo punto non verrĂ  visualizzato nulla. # --hints-- L'elemento `ul` deve avere un tag di apertura. I tag di apertura hanno questa sintassi: ``. ```js assert(document.querySelector('ul')); ``` L'elemento `ul` dovrebbe avere un tag di chiusura. I tag di chiusura hanno un `/` subito dopo il carattere `<`. ```js assert(code.match(/<\/ul>/)); ``` Ci dovrebbe essere un elemento `ul` proprio sopra il tag di chiusura del secondo elemento `section`. ```js const secondSectionLastElemNode = $('main > section')[1].lastElementChild; assert(secondSectionLastElemNode.nodeName === 'UL'); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.
--fcc-editable-region--

Cat Lists

Things cats love:

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