--- id: 5dc23991f86c76b9248c6eb8 title: Part 6 challengeType: 0 dashedName: part-6 --- # --description-- HTML elements are often nested within other HTML elements. In the previous step you nested the `h2` element, comment and `p` element within the `main` element. A nested element is a child of its parent element. To make HTML easier to read, indent the `h2` element, the comment, and `p` element exactly two spaces to indicate they are children of the `main` element. # --hints-- Your should have an `h2` element with text `Cat Photos`. You may have accidentally deleted it, it is missing both opening and closing tags, or the text has changed. ```js assert( document.querySelector('h2') && code.match(/<\/h2\>/) && document.querySelector('h2').innerText.toLowerCase() === 'cat photos' ); ``` Your `h2` element should below the `main` element's opening tag and its opening tag should start 6 spaces over from the start of the line. ```js assert(code.toLowerCase().match(/\n\s{6}

/)); ``` Your code should have a comment. You removed the comment from an earlier step. ```js assert(code.match(//)); ``` The comment's text should be `TODO: Add link to cat photos`. Do not change the text or spacing of the comment. ```js assert(code.match(//i)); ``` Your comment should be below the `h2` element and start 6 spaces over from the start of the line. ```js assert( code .toLowerCase() .match(/<\/h2>\n\s{6}/) ); ``` Your code should have a `p` element. You have removed the `p` element from an earlier step. ```js assert(document.querySelector('p')); ``` The text of the `p` element should be `Click here to view more cat photos.` Do not change the text, spacing, or punctuation of the `p` element. ```js assert( document .querySelector('p') .innerText.toLowerCase() .match(/click\s+here\s+to\s+view\s+more\s+cat\s+photos\.?$/) ); ``` Your `p` element should be below the comment and its opening tag should start 6 spaces over from the start of the line. ```js assert(code.toLowerCase().match(/-->\n\s{6}

/)); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

--fcc-editable-region--

Cat Photos

Click here to view more cat photos.

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