My confusion is unmeasurable

We don’t advise users on the forum to post screenshots because they are not always easy to read.

Please write it directly into the forum.

Thanks!

1 Like
<a href=“https://freecatphotoapp.com”</a>

probably a typo ( in this case a space in one of the links ). Nothing to do with " a " tag.

1 Like

You still have the quotes issue from earlier.

These are the incorrect quotes

You need to resolve those by turning off smart quotes on your device.

But you still have syntax issues.

You deleted the closing > here

and you removed the img element completely.

Remember that this challenge is about nesting an image element inside the anchor tags.

1 Like

The only thing that is wrong in your initial code is:

  1. The URL address has a space it shouldn’t have.

  2. You are missing the closing </a> after the <img> element.

I would suggest you copy and paste the code from the editor when posting the code to the forum. I know you are on a phone, but that should still be possible.


In case the syntax is completely escaping you here is an example. I’d also suggest formatting the code as shown to make it easier to read.

<a href="https://forum.freecodecamp.org">
  <img src="https://via.placeholder.com/120" alt="placeholder">
</a>
1 Like

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