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 Introduction to HTML and CSS (2016) Adding a New Web Page Write the CSS

Resume page - receiving 404 not found error

When I try to add /resume.html to the url, I receive a 404 not found error. Thought I followed the tutorial, but can't figure out why it doesn't work for me. Thanks!

3 Answers

Steven Parker
Steven Parker
230,995 Points

Just a guess, but are you sure you need an absolute path (starting with "/")? Maybe you need a relative path instead.

If you still have trouble, to facilitate a complete analysis, make a snapshot of your workspace and post the link to it here.


On viewing the snapshot, it seems the link is pointing to "resume.html", but the file name is "Resume.html". Since the workspace OS has a case-sensitive filesystem, it's not finding the file.

To fix it, you can change either the link href to capitalize the name, or rename the file itself with all lower-case.

Steven Parker
Steven Parker
230,995 Points

Would the person who downvoted this answer please leave a comment to let me know what was wrong with it and/or how I can improve it? Thanks!

Edward Randall
Edward Randall
1,834 Points

the capital R in Resume.html was it for me, thank you!

https://w.trhou.se/25ltr4jo0j

<li><a href="resume.html">Experience</a></li>

Thank you!

Thank you!