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

CSS 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>
Austin Whipple
Austin Whipple
29,725 Points

I'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!

2 Answers

It should be this <link rel="stylesheet" href="resume.css"/>

But you had this <link rel="stlesheet" href="resume.css"/>

Thank 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
Austin Whipple
29,725 Points

Been there. Don't let it keep you down!