Introduction to HTML5 Elements help plz

Tell us what’s happening:

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>

<footer>
    <p> Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/

Good try! You need to

use main <main> tag instead of <footer> tag.

Make sure your first <p> element goes inside footer tag.

How do I give main paragraph as children?

You are more likely to get the help you need if you open your own thread. You can use the “Ask for help” button on the challenge page.

Anyway, the challenge is asking you to put two <p> elements inside a <main> element.

Example, using fake HTML elements, replace using the correct element names:

<mainElement>
  <paragraphElement></paragraphElement>
  <paragraphElement></paragraphElement>
</mainElement>

You already a first p element so you need a second p which the text provided in the page. Your main tag should start from the first p and end with the last p