Hello, i think i closed all my p elements </p>

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p> View more
<a href="http://freecatphotoapp.com" target="_blank">cat photos</a>
</p>

<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

<p>Kitty ipsum dolor sit amet, shed <a href="http://freecodecamp.org">everywhere</a> shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
</main>

Your browser information:

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

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

To nest is to “place within”

@flamey how will i be able to do that pls

The a element should be indented like this

<p>
   <a href= URL </a>
</p>

Hope this helps

I am still getting this error

You should create a new p element around your a element. There should be at least 3 total p tags in your HTML code.

@aliprince, at the beginning you correctly created a new p element around the existing a element.
But then you went down and added an a to the first paragraph. You shouldn’t have done that.
Then you deleted the second paragraph. You shouldn’t have done that either.

Reset the test and only modify what it asked you to modify. When you’re done you’ll see the “view more” text show before the “cat photos” link in the live preview.
Hope that helps.

I got it thanks @everyone

your a element is wrong there should be like:

<p>
   <a href= URL > </a>
</p>