Learn HTML by Building a Cat Photo App - Step 15

i have been trying to make the cat photo into a link but not yet succeded

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"target="_blank" img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"  alt="A cute orange cat lying on its back.">

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0

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

Link to the challenge:

so the issue is that you are not respecting the syntax and the boundaries of the img element.
Each html element tag has < on its left and > on is right
and if you click the reset button (it looks like an arrow turning) then you will notice that the img element is following this rule as it looks like this:
<img src="something">
When you add the anchor tag(s) you must do that while not erasing the < and the > of the img tag.
The anchor’s opening tag should go on the left side of the img and the closing tag should go on the right of the img.
Also you do not need to specify the target attribute for this new anchor tag as it was not requested.

Try again and hopefully you will get closer this time.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.