Learn HTML by Building a Cat Photo App - Step 8

hello can you tell me whats wrong on my code ? I don’t know whats wrong with the step 8

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 cat photos.</p>
      <img>
       src='https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg
      <img>
      
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 15054.114.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

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

Link to the challenge:

move the src statement so it is inside the img tag
<img src="something">
Make sure you close the quotes at the end.
Remove the duplicate img tag that was added.