Learn HTML by Building a Cat Photo App - Step 15

I’ve googled and look at all the topics on Step 15 and I’m still getting that I should have an img image with a src value. I’ve put in how others have posted that Step 15 should look my code is still not passing. HELP!!
Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
<p> click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photo</a>.</p> <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg  alt="A cute orange cat lying on its back."</a>
    </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/106.0.0.0 Safari/537.36

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

Link to the challenge:

Your img element is missing the > at the end.

(Add > after the double quotes shown here and to the left of the closing anchor tag)

Try not to copy other people’s work. People post bad code on the forum so copying it will not help.