Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialjoelbumpus
3,354 PointsAm I supposed to be using <figcaption>?
I tried to use the <figcaption> function to display alternative text, but am receiving an error.
<!DOCTYPE html>
<html>
<head>
<title>The Moon</title>
</head>
<body>
<img src="../moon.jpg">
</body>
</html>
2 Answers
Alejandro Narvaja
Courses Plus Student 7,340 PointsThe <figcaption> is to describe an image. For alternative text you have to use the alt attribute.
<img src="http://dummyimage.com/200" alt="Alternative text">
joelbumpus
3,354 PointsPerfect. Thank you!