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 trialdann manganti
2,194 PointsCan't get my resume.css to link up to my resume.html
<!DOCTYPE html> <html> <head> <title>Dann's Resume</title> <link rel="sylesheet" href="resume.css"> </head> <body> <img src="http://placeimg.com/200/200/tech" alt="Tech"> <h1>Dann</h1> <h2>Summary of Qualifications</h2> <ul> <li>Experience as a freelance web developer</li> <li>Experience with HTML, CSS, and JavaScript</li> <li>Bachelor of Science, Economics</li> </ul> </body> </html>
and i have my css saved as, resume.css
so i'm not sure why I cant link the two
2 Answers
KRIS NIKOLAISEN
54,971 PointsIn linking your stylesheet you have rel="sylesheet"
instead of rel="stylesheet"
Juan Rivera
UX Design Techdegree Graduate 16,144 Pointsmine wasn't working either, but i put:
<link rel="stylesheet" href="resume.css">
without the css/ part in the href and it ended up working just fine. Not sure why but it worked lol.