What is my mistake? I can't understand

Tell us what’s happening:
There are hints and kind of missions for pass the test by tutorial.
・Your a element should be nested within your new p element.
・Your a element should not have the text “View more”.
but I can’t understand and I’m not sure what should I do.
Please help me…

Your code so far


<h2>CatPhotoApp</h2>
<main>

<a href="https://freecatphotoapp.com" target="_blank">cat photo</a>

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

<a href="https://freecatphotoapp.com" target="_blank">cat photos
<p>
  View more
</p>
</a>
<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/86.0.4240.198 Safari/537.36.

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

Hi @siena!

Welcome to the forum!

This is nesting.

<p>
<a></a>
</p>

Add your anchor tag at the end of view more. Make sure there is a space before more. Also make sure there is the a end tag after photos.

Hope that helps!

1 Like