--- id: 5ef9b03c81a63668521804ea title: Part 64 challengeType: 0 dashedName: part-64 --- # --description-- Notice that everything you've added to the page so far is inside the `body` element. All page content elements that should be rendered to the page go inside the `body` element. However, other important information goes inside the `head` element. Add a `head` element just above the `body` element. # --hints-- You have either deleted the `body` element or it is missing an opening tag or closing tag. ```js assert(document.querySelector('body') && code.match(/<\/body>/)); ``` Your `head` element should have an opening tag. Opening tags have the following syntax: ``. ```js assert(code.match(/\/)); ``` Your `head` element should have a closing tag. Closing tags have a `/` just after the `<` character. ```js assert(code.match(/\<\/head\>/)); ``` Your `head` element should be above the opening `body` element tag. You have it put it somewhere else. ```js const noSpaces = code.replace(/\s/g, ''); assert(noSpaces.match(/\<\/head\>\/)); ``` # --seed-- ## --seed-contents-- ```html --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?
--fcc-editable-region-- ```