Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
Describe your issue in detail here.
I have no idea what this step wants me to do. I tried. I want to also point out that I did this code camp about a year ago, before the new version. I remember the legacy version being very clear with the directions. This one, I don’t know, there are already many steps that i didn’t understand because the directions were not clear about how to write the code at all.

I seriously just have NO idea what to do, please don’t tell me to add or change things, i will get confused. I tried reading other peoples posts and i don’t understand what anyone is saying in reply to them. I would sincerely just like to see the answer/proper code in it’s entirety without mistakes. I will be able to learn the pattern from the answer. Or if you are not allowed to do that, please just give me a correct example with other images so I can see the pattern for the answer.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

<!-- User Editable Region -->

      <a> href="https://freecatphotoapp.com" <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."</a>

<!-- User Editable Region -->

    </main>
  </body>
</html>

Your browser information:

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

Challenge: Learn HTML by Building a Cat Photo App - Step 15

Link to the challenge:

Posting answers is not allowed

This href attribute must be inside of your a tag, like you did here:

Also, you deleted the > at the end of this img element.

Why us this still have to include an image attribute?

If you have a question about a specific challenge as it relates to your written code for that challenge, and you’ve tried to solve it at least 3 times so far and still need some help, just click the Ask for Help button located on the challenge (it looks like a question mark).
This button 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.