--- id: 5ef9b03c81a63668521804eb title: Step 65 challengeType: 0 dashedName: step-65 --- # --description-- The `title` element determines what browsers show in the title bar or tab for the page. Add a `title` element within the `head` element. Its text should be `CatPhotoApp`. # --hints-- You have either deleted the `head` element or it is missing an opening tag or closing tag. ```js assert(code.match(/\/) && code.match(/\<\/head\>/)); ``` Your `title` element should be nested in the `head` element. Make sure to added an opening tag and closing tag for the `title` element. ```js const noSpaces = code.replace(/\s/g, ''); assert(noSpaces.match(/\\.*\<\/title\>\<\/head\>/)); ``` Your `title` element should have a closing tag. Closing tags have a `/` just after the `<` character. ```js assert(code.match(/\<\/title\>/)); ``` Your `title` element's text should be `CatPhotoApp`. You have either omitted the text or have a typo. ```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?
```