--- id: 5dc17dc8f86c76b9248c6eb5 title: Part 4 challengeType: 0 --- ## Description
Commenting allows you to leave messages without affecting the browser display. It also allows you to make code inactive. A comment in HTML starts with ``. For example, the comment `` contains the text `TODO: Remove h1`. Add a comment above the `p` element with the text `TODO: Add link to cat photos`. \
## Tests
```yml tests: - text: Your comment should start with ``. You are missing one or more of the characters that define the end of a comment. testString: assert( code.match(/-->/) ); - text: Your code should not have extra opening/closing comment characters. You have an extra `` displaying in the browser. testString: | const noSpaces = code.replace(/\s/g, ''); assert (noSpaces.match(//g).length < 2 ); - text: 'Your comment should contain the text `TODO: Add link to cat photos`.' testString: assert( code.match(//i) ); - text: Your comment should be above the `p` element. You have them in the wrong order. testString: assert( code.replace(/\s/g, '').match(/

clickheretoviewmorecatphotos\.?<\/p>/i) ); ```

## Challenge Seed
```html

CatPhotoApp

Cat Photos

--fcc-editable-region--

Click here to view more cat photos.

--fcc-editable-region-- ```