Learn HTML by Building a Cat Photo App - Step 15

The question is telling me to add a closing (a) tag after the image, but I thought I already had it, what should I do?

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

Welcome to the forum @ugly_dodo_bird

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

  1. The opening anchor tag is missing a closing angled bracket.
  2. The closing anchor tag needs to go after the image element.

The link needs to nest the image element, so that when a user clicks on the image the page in the href will display.

Happy coding

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