Nest an Anchor Element within a Paragraph. Learn Basic HTML

I don’t really know how to explain this but i need to put these into one thing and i have no clue how. These are the rules: You should only have one a element.

The a element should link to " https://www.freecatphotoapp.com ".

Your a element should have the anchor text of cat photos

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

Your a element should be nested within your new p element.

Your p element should have the text View more (with a space after it).

Your a element should not have the text View more .

Each of your p elements should have a closing tag.

Each of your a elements should have a closing tag.
These are the lines of code:

<h2>CatPhotoApp</h2>
<main>

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

  <img src="https://www.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>

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.


Your code passes for me.