Nest an Anchor Element within a Paragraph-?

Tell us what’s happening: Using the code below always results in failing the fourth check: Your a element should be nested within your new p element. How is it that my ‘a’ element is not nested?

Your code so far


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

  <a href="http://freecatphotoapp.com" target="_blank">cat photos</a>
  
  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
  
  <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>
</main>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph

Hi there,

try to remove this line please. You have already nested within p tags.

This should do the trick :wink:

<a href="http://freecatphotoapp.com" target="_blank">cat photos</a>

Aahahaha! I see!

I spent so much time retyping my statement over and over again, removing parts and over modifying it. Even moving it around. I never stopped to think that the issue was that there was,

I could have just added

<p>View more 
...
</P

The rest of the code was already completed for me.

I was just trying to practice as much as possible by using less of the provided code.

lol

Thanks

<p>View more 
  <a href="http://freecatphotos.com">cat photos</a>
</p>

The other thing you missed is the word “app” in the external link.

And that too. I lost that part during all the retyping that I was doing.

Ahahah! Thanks.

1 Like

Maybe because you have two different a elements, try removing the one outside