--- id: 5ef9b03c81a63668521804ec title: Step 67 challengeType: 0 dashedName: step-67 --- # --description-- Nota che l'intero contenuto della pagina è annidato all'interno di un elemento `html`. Tutti gli altri elementi devono essere discendenti di questo elemento `html`. Aggiungi l'attributo `lang` con il valore `en` al tag di apertura `html` per specificare che la lingua della pagina è l'inglese. # --hints-- Hai eliminato l'elemento `html` oppure manca un tag di apertura o di chiusura. ```js assert(code.match(/\/) && code.match(/\<\/html\>/)); ``` L'elemento `html` dovrebbe avere un attributo `lang` con il valore `en`. Potresti aver omesso l'attributo o il valore o avere un refuso. ```js const extraSpacesRemoved = code.replace(/\s+/g, ' '); assert(extraSpacesRemoved.match(/\/)); ``` Anche se hai impostato `en` come valore dell'attributo `lang` dell'elemento `html`, è raccomandato inserire sempre il valore di un attributo tra virgolette. ```js assert(code.match(//gi)); ``` # --seed-- ## --seed-contents-- ```html --fcc-editable-region-- --fcc-editable-region-- CatPhotoApp

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?
```