--- 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. # --hints-- 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. ```js assert(code.match(/\<\s*!DOCTYPE\s+html\s*\>/)); ``` Your `` must be located at the top of the document. ```js const noSpaces = code.replace(/\s/g, ''); assert(noSpaces.match(/^\<\!DOCTYPEhtml\>\ 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:

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?
``` # --solutions-- ```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:

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