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