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 trial

HTML HTML Basics Images, Text and Links Images and File Paths Challenge

i need help

i need help

index.html
<!DOCTYPE html> 
<html>
  <head>
    <title>The Moon</title>
  </head>
  <body>
     <img src="img/moon.jpg" alt="The Moon">
  </body>
</html>
Christopher De Lette
Christopher De Lette
Courses Plus Student 7,139 Points

Hi,

I am assuming you are having a tough time with the final part of this challenge because the first two questions you have answered correctly according to the above posted code snippet. The tag/s you're looking for are

 <figure>
 <img src="" alt="">
 <figcaption>text goes here to describe image</figcaption>
 </figure>

1 Answer

Aleksandra Baranjos Bajakic
Aleksandra Baranjos Bajakic
3,016 Points

Hi, I hope it will help you!

<!DOCTYPE html> <html> <head> <title>The Moon</title> </head> <body> <figure> <img src="img/moon.jpg" alt="Moon"> <figcaption>Text that describes or explains an image</figcaption> </figure> </body> </html>