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 trialDaniel Pino
Full Stack JavaScript Techdegree Student 3,032 PointsCSS not linked? Text not turning blue.
My H1 text is not turning blue, and I can't figure out why. Any help would be appreciated. Thanks!
resume.html
<!DOCTYPE html>
<html>
<head>
<title>Dan's Resume</title>
<link rel="sytlesheet" href="resume.css">
</head>
<body>
<img src="https://placeimg.com/200/200/any" alt="Dan Pino, Web Dev">
<h1>Dan Pino, Web Dev</h1>
<h2>Summary of Qualifications</h2>
<ul>
<li>Experience as a freelance web dev</li>
<li>Experience with HTML/CSS and Javascript</li>
<li>Major in IST</li>
</ul>
</body>
</html>
resume.css
h1 {
color:blue;
}
1 Answer
jb30
44,806 PointsYou have a typo. rel="sytlesheet"
should be rel="stylesheet"
.