Tell us what’s happening:
I don’t know what I am doing. HELP!
Make sure each of your p elements has a closing tag. has a x by it
The closing main tag should come after the second closing paragraph tag.has a x by it
Your code so far
<h2>CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<main>
<p>Purr jump eat the grass rip the couch srcatched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scaratched.<p>
</main>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15.
You need both <p> elements to be nested within the <main> element, not just the second one. The first <p> that begins “Kitty ipsum…” should have your <main> tag directly above.
Now obviously parent and child are not real HTML elements, I used them to show you an example of what the lesson is looking for. (And besides, someone gave you the answer)