Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
I have added what I believe to be the correct anchor tag then at the end of the image I have a closing tag of . It keeps giving me the error that " Your anchor (a) element should link to https://freecatphotoapp.com . You have either omitted the URL or have a typo." Not sure what I am missing here.

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 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge:

I did not touch the img element whatsoever.

OMGOSH I found it. I forgot my “=” sign. Sorry!