Introduction to HTML5 Elementshelp

Tell us what’s happening:

Your code so far



<h2>CatPhotoApp</h2>

<header>
<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>
</header>

<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>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:61.0) Gecko/20100101 Firefox/61.0.

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

Your code should have one <main> element. Then put the two <p> elements inside that.

please explain this.And give me a example

The <p> elements need to be wrap in the <main> element

The exercise is looking for a <main> element with two <p> elements inside it in your code. Like this:

<main>
  <p>...</p>
  <p>...</p>
</main>

Thanks, everyone. Do better in life.