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
Scott Taylor
11,038 PointsI can't get my resume link to work
I am on the introduction to HTML & CSS and I have followed the video to make my resume html to spec but when i try and go to the /resume.html it gives me the 404 not found error page. I have no idea what I'm doing wrong. I have saved every step and still have no idea why it will not work. Please someone help!!!!
Scott Taylor
11,038 PointsDave here is what it looks like so far:
<!DOCTYPE html>
<html>
<head>
<title>Scott Taylor's Resume</title>
</head>
<body>
<img src="http://placeimg.com/200/200/any" alt="Scott Taylor, Web Developer">
<h1>Scott Taylor, Web Developer</h1>
<h2>Summary of Qualifications</h2>
<ul>
<li>Experience as a freelance web developer</li>
<li>Experience with HTML, CSS, JavaScript</li>
<li>Certified Medical Assistant</li>
</ul>
</body>
</html>
and in the video she says to add /resume.html to the profile page. Here is what my browser is showing: http://port-80-5ha7njs5gr.treehouse-app.com/resume.html
Dave StSomeWhere
19,870 PointsScott is your code in an html file, does it have a name and location, are you working locally or in a workspace and then hitting preview?
Is below your profile page - what is it's name, is it index.html and I think you need to add a link to your resume. Where do you want/need to link to be?
<!DOCTYPE html>
<html>
<head>
<title>Scott Taylor's Resume</title>
</head>
<body>
<img src="http://placeimg.com/200/200/any" alt="Scott Taylor, Web Developer">
<h1>Scott Taylor, Web Developer</h1>
<h2>Summary of Qualifications</h2>
<ul>
<li>Experience as a freelance web developer</li>
<li>Experience with HTML, CSS, JavaScript</li>
<li>Certified Medical Assistant</li>
</ul>
</body>
</html>
Scott Taylor
11,038 PointsI figured it out finally Dave just needed someone to wake my mind up. Sleep deprivation set in on me after burying my father. I had made the R capital on resume when i made my html new file but was using the lower case r in the browser. I fixed it and is working now. Thank you for responding and helping me realize my error and grow some knowledge. You rock my good sir.
Dave StSomeWhere
19,870 PointsDave StSomeWhere
19,870 PointsWhat does your code look like, what is your directory structure and where is resume.html?