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.html does not update/appear on the "Preview". Adding "resume.html" to the URL does not correct the issue.

Saved All Clicked "Preview Workspace" Added Resume.html to the URL and click "Resume" on the landing page, and neither showed my resume page.

The code works in a 3rd party HTML viewer, however I am unable to check the accuracy of CSS file in the 3p HTML viewer.

Steven Parker
Steven Parker
230,970 Points

To facilitate replication of your issue, make a snapshot of your workspace and post the link to it here.

https://w.trhou.se/crpidc8v0m

I was able to find another viewer that paired the CSS with HTML to check accuracy.

2 Answers

The issue viewing the HTML was because of case sensitivity. However now I am unable to view CSS styles.

Using liveweave.com, I was able to check the accuracy of the code itself. Hopefully this helps others move forward.

Steven Parker
Steven Parker
230,970 Points

It looks like a name mismatch. The HTML is attempting to load a stylesheet named "resume", but the actual file name is "Resume.css". Load it like this:

  <link rel="stylesheet" href="Resume.css">