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 trialKyle Graham
8,332 PointsResume.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.
Kyle Graham
8,332 PointsI was able to find another viewer that paired the CSS with HTML to check accuracy.
2 Answers
Kyle Graham
8,332 PointsThe 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
231,236 PointsIt 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">
Steven Parker
231,236 PointsSteven Parker
231,236 PointsTo facilitate replication of your issue, make a snapshot of your workspace and post the link to it here.