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 Set up an HTML Document

Michelle Meldrum
seal-mask
.a{fill-rule:evenodd;}techdegree
Michelle Meldrum
Front End Web Development Techdegree Student 348 Points

when I add the /Resume.html to the URL, I get a message that states -

when I add the /Resume.html to the URL, I get a message that states -

Not Found

The requested URL /Resume.html was not found on this server.

Ceil-Ian Maralit
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Ceil-Ian Maralit
Front End Web Development Techdegree Graduate 19,434 Points

Hi! Did you get the answer to your question yet? If not, do you mind taking a snippet of what you did and post it here? So I can take a look at what’s wrong.

3 Answers

Neda Ionut
Neda Ionut
915 Points

Hi, you should add the path: /resume.html, instead of /Resume.html. It seems that the browser only works with small letters, anyway. So, on your files also, you should use small letters only, in order for it to be properly "read" by the broser.

it was the caps in the file save title that got me, I was getting frusterated, thankyou!!!!!! (only use lower caps when you title your new file)

It seems that the browser only works with small letters, anyway.

You're right about capitalization being the problem here but it's not accurate to describe the browser as only working with small letters. In this case, it needs to match the capitalization of your HTML file.

All web browsers can recognize capital letters but whether or not a URL is case sensitive depends on the server, as is explained here. In this case, the URL very much is case sensitive!

If you named your HTML file "Resume.html", then your URL must have: ".../Resume.html"

If you named your HTML file "resume.html", then your URL must have: ".../resume.html"

I tested it and BOTH ways work (proving that web browsers can accept capital letters in the URL). You can use either all lower case or have capital letters but the URL needs the same capitalization as the HTML file in your workspace.

Case USUALLY doesn't matter in URLs (which is why so many people had the same issue) but, in this scenario, the resume path is case sensitive. This crucial detail wasn't mentioned in the video - it does show a lower-case letter being used but it doesn't actually warn us against using a capital letter here in the name or make us aware that we must then match the capitalization of the URL in the web browser).

Basically, everyone who chose "Resume.html" as their file name (probably a very large percentage of people!) would have got a 404 error as it would never occur to them to also use a capital letter in the web browser at the next step. Michelle's problem was the opposite way around: her HTML file was called "resume.html" but she was typing "Resume.html" in her browser.

In my opinion, everyone should just stick to lower-case letters for file names in their workspaces so that incorrect capitalization is never an issue - and always type URLs in all lower case unless you have a reason to do otherwise!

It also happened to me, but I discovered that the browser is case sensitive, therefore; if you use Capital letter to save Resume.html, you must also use Capital letter on the browser. example: "http://port-80-r0zlkrp8aw.treehouse-app.com/Resume.html" if you use "http://port-80-r0zlkrp8aw.treehouse-app.com/resume.html" it won't work.

Better use small letter to start resume "resume.html" when saving html.