--- id: 5ef9b03c81a63668521804eb title: Part 65 challengeType: 0 --- ## 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`.
## Tests
```yml tests: - text: You have either deleted the `head` element or it is missing an opening tag or closing tag. testString: assert( code.match(/\/) && code.match(/\<\/head\>/) ); - text: Your `title` element should be nested in the `head` element. Make sure to added an opening tag and closing tag for the `title` element. testString: | const noSpaces = code.replace(/\s/g, ''); assert( noSpaces.match(/\\.*\<\/title\>\<\/head\>/) ); - text: Your `title` element should have a closing tag. Closing tags have a `/` just after the `<` character. testString: | assert( code.match(/\<\/title\>/) ); - text: Your `title` element's text should be `CatPhotoApp`. You have either omitted the text or have a typo. testString: assert( document.title && document.title.toLowerCase() === 'catphotoapp' ); ```
## Challenge Seed
```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?
```