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.">
Teller
2
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.">
- The opening anchor tag is missing a closing angled bracket.
- 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
system
Closed
3
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.