How to insert main element

Tell us what’s happening:
I don’t know what commands I have to use to go forward here

Your code so far


<header>
<h1>CatPhotoApp</h1>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball children run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy children fur catnip scratched.</p>
</header>
<p>just another pargraph because they asked for.</p>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15.

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

here is a p element wrapped in a main element

<main>
<p>my name is Peter</p>
</main>
1 Like
<header>
<h1>heading</h1>
<p>paragraph 1</p>
<p>paragraph 2</p>
</header>

You need only to wrap both the paragraphs within a <main> tag pair.

1 Like