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
wolnie stewart jr
606 Pointsexternal css wont work
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Wolnie Stewart | Designer </title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
8 Answers
Simon Sørensen
17,304 PointsEhmmm, I don't see any external CSS?
Vlatko .
2,526 PointsTry:
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
Your code is missing this line:
type="text/css"
Simon Sørensen
17,304 PointsWon't help at all. The browser will detect that by itself.
Vlatko .
2,526 PointsIf not, then he has to make sure his CSS is in the proper directory.
Simon Sørensen
17,304 PointsExactly
Simon Sørensen
17,304 PointsListen, we need your folder structure.
Vladislav Usatenko
2,985 PointsI would make sure both the css files are in the css folder directory
wolnie stewart jr
606 Pointsit is in the proper directory they both are in the css folder
Vlatko .
2,526 PointsAre you linking to them from the same folder that the css folder is in or from a different folder?
ddstudio20
Courses Plus Student 7,259 PointsIs your CSS file in the CSS folder?
<link rel="stylesheet" type="text/css" href="css/main.css">
is digging in to the a folder named css in the main directory.
Maybe you made the folder and the file but they are saved in separate places?
wolnie stewart jr
606 Pointsi got it to work i just did everything from scratch
wolnie stewart jr
606 PointsThanks for the help everyone!!