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 Build a Simple Website Text Editors and HTML Images and Lists

I'm stuck

In text Editors and HTML, task 2 of 4. Is telling me to double check your image path. What is that?

2 Answers

Its the path to the image eg

    <img src="logo.png" alt="Logo for my site"> // Its the logo.png part 

This tells the browser where you stored the image and what it is called and its file type.

So for your question the file is in a folder called IMG and the image is called CUPCAKEand the file type is JPG so to tell the browser where this is we would do

    <img src"img/cupcake.jpg">

Thanks Adam

Click best answer to close the question off and help others. Cheers