Build a Cat Photo App - Step 17

Tell us what’s happening:

I am on the Responsive Web Design Certification course and I am running into an issue with "Building a Cat Photo App Step 17. I have submitted my answer to Claude, Google, and even watched a YouTube video watching someone submit the exact same answer I did. I am still being told my submission is wrong. Is there a bug with this particular step?

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 -->
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
      <a href="https://freecatphotoapp.com"> <img src="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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 17

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-cat-photo-app/5dfa30b9eacea3f48c6300ad.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @SixM

Your img element should be nested within the anchor (a) element. The entire img element should be inside the opening and closing tags of the anchor (a) element.

Here is a comparison of the original code and your code.

The code in blue is the original code, the code in red is your code.
The code in magenta is the overlap.

Your code contains an extra img element.

For this step you are asked to nest the img element provided in the seed code within an anchor element.

The src attribute value for the second img element is missing https://

  1. You can safely remove the second img element.
  2. Place the opening anchor tag above the img element.

Happy coding