Wraping paragraphs with an opening and closing main tags

Tell us what’s happening:

Your code so far



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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36.

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

1 Like

Here is a list of what you need to do.

  1. Reset your code. (You have deleted header tag)

Create a second p element after the existing p element with the following kitty ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

  1. Then wrap the two paragraphs inside your main tag.

How do i create a main tag or do I have one in my code already?

got it already, thanks

You probably already have one. A main tag is just like this

<main> 
**Content of text here**
</main>
1 Like