--- id: bad87fee1348bd9aedf0887a title: Creare un titolo con l'elemento h2 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cE8Gqf3' forumTopicId: 18196 dashedName: headline-with-the-h2-element --- # --description-- Nelle prossime lezioni, costruiremo passo passo un'app web HTML per le foto di gatti. L'elemento `h2` che inserirai in questo passaggio aggiungerĂ un titolo di livello due alla pagina web. Questo elemento fornisce al browser informazioni sulla struttura del tuo sito web. Gli elementi `h1` sono spesso utilizzati per i titoli principali, mentre gli elementi `h2` sono generalmente utilizzati per i sottotitoli. Ci sono anche elementi `h3`, `h4`, `h5` e `h6` per indicare diversi livelli di sottotitolo. # --instructions-- Aggiungi un tag `h2` che dice "CatPhotoApp" per creare un secondo elemento HTML sotto il tuo elemento `h1` "Hello World". # --hints-- Dovresti creare un elemento `h2`. ```js assert($('h2').length > 0); ``` Il tuo elemento `h2` dovrebbe avere un tag di chiusura. ```js assert( code.match(/<\/h2>/g) && code.match(/<\/h2>/g).length === code.match(/