Idk what this means

i do not know what put your a inside your new p elemant means without getting a new a element
Describe your issue in detail here.

 <p> view more </p>

<h2>CatPhotoApp</h2>
<main>
<p>
Here's a <p> target="_blank" href="https://www.freecodecamp.org"> link to www.freecodecamp.org</p> for you to follow.
</p>
<a href="https://www.freecatphotoapp.com" target="_blank">cat photos</a>
Here's a link to www.freecodecamp.org for you to follow.
<img src="https://www.bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
<p> view more </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>
</main>
  **Your browser information:**

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

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

You’ve kind of messed up the code a bit - I might suggest pressing the Reset All Code button and starting fresh.

Nest the existing a element within a new p element.

Yeah, this instruction confuses a lot of people.

They are saying that the a element should be “nested in” or “contained in” or “surrounded by” the p element.

For example, if it said to nest an h1 element inside a div element, it might look like:

<div>
  <h1>Howdy</h1>
</div>

You need to do that but nesting an a element (the one already in the code, don’t make a new one) inside a p element. The text in the p element should say “View more cat photos”, where “cat photos” is the clickable link (already in the code).

Does that help? Try it out and check back with us if you get stuck.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.