--- id: 5ef9b03c81a63668521804e7 title: Part 61 challengeType: 0 --- ## Description
Now you will add a footer section to the page. After the `main` element, add a `footer` element.
## Tests
```yml tests: - text: You have either deleted the `main` element or it is missing an opening tag or closing tag." testString: assert( document.querySelector('main') && code.match(/<\/main>/) ); - text: "Your `footer` element should have an opening tag. Opening tags have the following syntax: ``." testString: assert( document.querySelector('footer') ); - text: Your `footer` element should have a closing tag. Closing tags have a `/` just after the `<` character. testString: assert( code.match(/<\/footer\>/) ); - text: Your `footer` element should the below the closing `main` element tag. You have it put it somewhere else. testString: assert( document.querySelector('main').nextElementSibling.nodeName === 'FOOTER' ); ```
## Challenge Seed
```html

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--
--fcc-editable-region-- ```