Build a Cat Photo App - Step 17

Tell us what’s happening:

I did everything required but it’s not correct I don’t know what I’m doing wrong

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15

Challenge Information:

Build a Cat Photo App - Step 17

Welcome to the forum @gimseungyeon2

Please remove the second anchor element and image element you added.
You are using the href attribute value from the example code. You need to use the one from the instructions.

Happy coding