Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
Describe your issue in detail here.
im confused. its says i have to remove extra opening anchor tags but i only have one? am i missing something? help please.
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 target="_blank" 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 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

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

Link to the challenge:

Hint: Are tags closed like this?

Hi there, the problem is that you closed <a> the wrong way. Try </a> instead of <a/>.

1 Like

wow lol didnt notice, thank you

Where did you find the instruction to change the given text in the previous step:

<p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

Yes, it has passed this time, but with this approach, you will encounter a lot of obstacles on your way through the Responsive web design course.

sorry im lost what do you mean?

Everything is ok. My mistake. I checked the wrong step. It happens. Sorry…

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