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

When clicked, images are "Not Found" but they are uploaded...

When I go preview the website, instead of seeing the image I see a broken image icon. When I click on the icon I get this, "The requested URL /img/numbers-01.jpg was not found on this server."

I have uploaded the images to my workspace and have looked at my code a dozen times. I don't know what is incorrect.

Does anyone have some advice as what could be wrong?

I believe you can see my code through this "snapshot" https://w.trhou.se/89hojm2del

Make sure the folder path is correct.

<img src="howtomakeawebsite/images/etc....">

1 Answer

Sean Do
Sean Do
11,933 Points

Logan Eppley is right. Your folder is called "Images". In the html,

   <li> 
        <a href="img/numbers-01.jpg">
           <img src="img/numbers-01.jpg" alt=""> <!-- Targeting the wrong folder-->
        <p>Experimentation with color and texture.</p>
        </a>
   </li>

Hi Sean and Logan, thank you for the help and pointing out my mistake. I appreciate it!