--- id: 5ef9b03c81a63668521804eb title: Step 65 challengeType: 0 dashedName: step-65 --- # --description-- L'elemento `title` determina ciĆ² che il browser mostra nella barra del titolo o nella scheda della pagina. Aggiungi un elemento `title` all'interno dell'elemento `head`. Dovrebbe contenere il testo `CatPhotoApp`. # --hints-- Hai eliminato l'elemento `head` oppure manca un tag di apertura o chiusura. ```js assert(code.match(/\/) && code.match(/\<\/head\>/)); ``` L'elemento `title` dovrebbe essere annidato nell'elemento `head`. Assicurati di aggiungere i tag di apertura e chiusura dell'elemento `title`. ```js const noSpaces = code.replace(/\s/g, ''); assert(noSpaces.match(/\\.*\<\/title\>\<\/head\>/)); ``` L'elemento `title` dovrebbe avere un tag di chiusura. I tag di chiusura hanno un carattere `/` appena dopo il carattere `<`. ```js assert(code.match(/\<\/title\>/)); ``` Il testo dell'elemento `title` dovrebbe essere `CatPhotoApp`. Hai omesso il testo o hai un refuso. ```js assert(document.title && document.title.toLowerCase() === 'catphotoapp'); ``` # --seed-- ## --seed-contents-- ```html --fcc-editable-region-- --fcc-editable-region--

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

  • cat nip
  • laser pointers
  • lasagna
A slice of lasagna on a plate.
Cats love lasagna.

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Five cats looking around a field.
Cats hate other cats.

Cat Form

Is your cat an indoor or outdoor cat?
What's your cat's personality?
```