--- id: 5ef9b03c81a63668521804ec title: Step 66 challengeType: 0 dashedName: step-66 --- # --description-- Notice that the entire contents of the page are nested within an `html` element. All other elements must be descendants of this `html` element. Add the `lang` attribute with the value `en` to the opening `html` tag to specify that the language of the page is English. # --hints-- You have either deleted the `html` element or it is missing an opening tag or closing tag. ```js assert(code.match(/\/) && code.match(/\<\/html\>/)); ``` Your `html` element should have a `lang` attribute with the value `en`. You may have omitted the attribute/value, or have a typo. ```js const extraSpacesRemoved = code.replace(/\s+/g, ' '); assert(extraSpacesRemoved.match(/\/)); ``` Although you have set the `html` element's `lang` attribute to `en`, it is recommended to always surround the value of an attribute with quotation marks. ```js assert(!/\<\s*html\s+lang\s*=en/i.test(code)); ``` # --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?
```