Please can someone help me I'm stuck on this challenge and its been forever

Tell us what’s happening:

I have done all the challenges but one "your a element should be nested with the p element " I am failing again and again Can someone help me?
Here is the link https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph
Your code so far
I Just started to learn Programming so I don’t know much


<h2>CatPhotoApp</h2>
<main>

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

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

You should create a new <p> element and inside it put the <a> element

You never completed your opening a tag because you don’t have a >.

Are you supposed to have one a element or two? You have two and one of them is not inside a p element.

You also shouldn’t have quotation marks around “View more cat photos” and the “c” shouldn’t be capitalized, but I don’t know if the tests will fail because of those.