Alt text has cast invisibilty

As you can see, the caption isn’t working and I’m not sure where I’m going wrong (hence why I’m coming to you guys). Help?

Here’s my code:

< img src=‘//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/freecodecamp/original/3X/5/d/5d5b8283c245644b00b84c1570ecbb0e1fd3d518.jpg’ alt="Lucy Heartfilia, centre, steps foot into the Fairy Tail guild for the first time. ">

What captions are you talking about? This text?

Lucy Heartfilia, centre, steps foot into the Fairy Tail guild for the first time.

It won’t normally appear on the web page (visually)

If you want captions you can use this:

<figure>
  <img src="...">
  <figcaption>
    <p>Lucy Heartfilia, ...</p>
  </figcaption>
</figure>
1 Like

Yeap, that.

Just before you replied I just realized that the HTML I tried using to create a caption isn’t the HTML I need (oops). Let’s blame this one on it being 10AM and the lack of tea I’ve drank.

That being said, I didn’t actually know the HTML for captions and now I do.
Thank you!