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

/resume.html

Below is the code and at the bottom of the page is the URL. Nothing is showing up when I try to view the page and add: /resume.html

<!doctype html> <html> <head> <title>Resume</title> </head>

<body>

<img src="http://placeimg.com/200/200/tech" alt="Headphones on desk">
<h1>Lorena, Web Developer</h1>
<h2>Summary of Qualifications</h2>  
<ul>
<li>
  </li>

</ul>

</body> </html>

URL: http://port-80-1rpbqac3db.treehouse-app.com/resume.html

2 Answers

I see where you are coming from with that screenshot but the problem was actually not with the CONTENTS of your HTML file (which looks fine, by the way)... but with its actual NAME! Your browser wasn't able to find it.

What they ought to mention in the video is that the URL is case sensitive for workspaces. "resume.html" is treated as a completely different file from "Resume.html".

URLs are not always case sensitive (it depends on the server) but they seem to be when it comes to the names of files in workspaces.

From your question, I can see that you are typing the URL into your browser in all lower case letters (resume.html), so you should check your workspace and change your "Resume.html" to "resume.html" there also, so that any capitalization is identical in both places. Alternatively, you could type the URL into your browser with a capital "R", like this: ".../Resume.html) and that would also allow it to find the resume HTML file.

If you are still having trouble with this, please post a screenshot of your workspace window, so that we can see what capitalization was used for the actual HTML file - that's the key missing piece of information from your question.

Podrig Leoghain
Podrig Leoghain
5,094 Points

It's hard to work out what exactily you are trying to do but i will try to help if i can.

Are you trying to save that html as resume.html in workspaces? Have you tried this in another, standalone, text editor? I kept getting little bugs with workspaces!