Cat Photos
Click here to view more cat photos.

Cat Lists
Things cats love:
- cat nip
- laser pointers
- lasagna

Top 3 things cats hate:
- flea treatment
- thunder
- other cats

--- 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(/\\Click here to view more cat photos.