--- id: 5ef9b03c81a63668521804ee title: Part 67 challengeType: 0 --- ## Description
All pages should begin with ``. This special string is known as a declaration and ensures the browser tries to meet industry-wide specifications. To complete this project, add this declaration as the first line of the code.
## Tests
```yml tests: - text: Your code should begin with the declaration ``. You may have omitted the declaration, have a typo, or it is not the first line of code. testString: assert( code.match(/\<\s*!DOCTYPE\s+html\s*\>/) ); - text: Your `` must be located at the top of the document. testString: | const noSpaces = code.replace(/\s/g, ''); assert( noSpaces.match(/^\<\!DOCTYPEhtml\>\ ## Challenge Seed
```html --fcc-editable-region-- CatPhotoApp --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?
```
## Solution
```html CatPhotoApp

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