Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Adam Wieczorek
129 PointsCSS not loading
Hi,
I'm following the course and for some reason my stylesheet is not loading:
<!DOCTYPE html>
<html>
<head>
<title>Adam Wieczorek's Resume</title>
<link rel="stlesheet" href="resume.css"/>
</head>
<body>
<img src="http://placeimg.com/200/200/tech" alt="Adam Wieczorek, Web Dev">
<h1>Adam Wieczorek, Web Developer</h1>
<h2>Summary of Qualifications</h2>
<ul>
<li>Experience as a freelance Web Dev</li>
<li>Experience with HTML, CSS, Javascript</li>
<li>Some college degree</li>
</ul>
</body>
</html>
2 Answers

Brandon VanCamp
Front End Web Development Techdegree Graduate 30,954 PointsIt should be this <link rel="stylesheet" href="resume.css"/>
But you had this <link rel="stlesheet" href="resume.css"/>

Adam Wieczorek
129 PointsThank You both for answers! Probably combination of heat and late hour contributed to this :< I was literally losing my mind while trying to do this relatively simple thing!

Austin Whipple
29,712 PointsBeen there. Don't let it keep you down!
Austin Whipple
29,712 PointsAustin Whipple
29,712 PointsI've edited your comment to clean up the code formatting. Be sure to check out the Markdown Cheatsheet below the text editor for more information!