--- id: 5ef9b03c81a63668521804ea title: Step 65 challengeType: 0 dashedName: step-65 --- # --description-- Nota che tutto ciò che hai aggiunto alla pagina finora è all'interno dell'elemento `body`. Tutti i contenuti che devono essere visualizzati nella pagina devono trovarsi all'interno dell'elemento `body`. Tuttavia, altre informazioni importanti vanno all'interno dell'elemento `head`. Aggiungi un elemento `head` sopra l'elemento `body`. # --hints-- Hai eliminato l'elemento `body` oppure manca un tag di apertura o di chiusura. ```js assert(document.querySelector('body') && code.match(/<\/body>/)); ``` L'elemento `head` dovrebbe avere un tag di apertura. I tag di apertura hanno la seguente sintassi: ``. ```js assert(code.match(/\/)); ``` L'elemento `head` dovrebbe avere un tag di chiusura. I tag di chiusura hanno un carattere `/` subito dopo il carattere `<`. ```js assert(code.match(/\<\/head\>/)); ``` L'elemento `head` dovrebbe essere al di sopra del tag di apertura dell'elemento `body`. Lo hai inserito nel posto sbagliato. ```js const noSpaces = code.replace(/\s/g, ''); assert(noSpaces.match(/\<\/head\>\/)); ``` # --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?
```