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

Karl Peterson
seal-mask
.a{fill-rule:evenodd;}techdegree
Karl Peterson
Front End Web Development Techdegree Student 2,184 Points

The link won't work when I add the articles folder and I changed the link to <a href="articles/2017/article.html"> Help

I added the articles folder and moved the article file into it. I changed the link to this: " <a href="articles/2017/article.html">Read more</a>." Now I get a "File not found" when I click on the link in the web browser. I don't see anything wrong. Any ideas of what is wrong?

3 Answers

you may have to move out of the folder by type "../articles/2017/article.html">

Steven Parker
Steven Parker
231,007 Points

If the file is in the "articles" folder, the href should be "articles/article.html".

But an href of "articles/2017/article.html" will look for the file in a folder named "2017" that would itself be inside the "articles" folder.

If you're still having trouble, make a snapshot of your workspace and post the link to it here so we can examine the code and the filesystem.

Karl Peterson
seal-mask
.a{fill-rule:evenodd;}techdegree
Karl Peterson
Front End Web Development Techdegree Student 2,184 Points

I found the problem! I made the mistake of capitalizing the images folder as "Images" and then coding it as lower case. It is case sensitive.