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 How to Make a Website CSS: Cascading Style Sheets Take a Mobile-First Approach

Charkerra Parsons
Charkerra Parsons
1,785 Points

Pictures are not showing up, says URL cannot be found.

this has been happening for the last few lessons and when I hit refresh they still do not show up.

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Charkerra Parsons it's going to be much easier for us to help you if we can see a snapshot of your workspace. If you look in your workspace at the upper right-hand side you'll see a camera icon. Click that and make a snapshot. Then open it and paste the URL here. That way we can see all of your code including your file and directory structure. :smile:

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Take a look at this line in your code:

<a href="img/numbers-01.jpg">

It's pointing to the directory "img". But the directory containing your images is named "image". The easiest solution to this is to rename the directory containing the images to "img". You can rename a folder by right-clicking and choosing "rename".

Also, you have an error when ending an anchor tag on your Portfolio line. It should look like this:

<li><a href="index.html" id="list1">Portfolio</a></li>

Try these changes and see if it doesn't help! :thumbsup: