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 trialErik Valerian
Courses Plus Student 4,921 PointsLink rel.
Hi, I got a problem. I followed Nick step by step, but here... it says it is wrong>
<link rel="stylesheet" href="css/normalized.css" <link rel="stylesheet" href="css/main.css"
in the second line, stylesheet is in red field and what I write into main.css does not desplay in the browser.
If I remove: <link rel="stylesheet" href="css/normalized.css" , then it works and browser displays everything written in man.css
Can you help me please. Thank you /Erik
2 Answers
Caleb Kleveter
Treehouse Moderator 37,862 PointsLooks like you need closing less-then signs for the links:
<link rel="stylesheet" href="css/normalized.css">
<link rel="stylesheet" href="css/main.css">
Erik Valerian
Courses Plus Student 4,921 PointsHi, thanks for reply!
/Erik
Erik Valerian
Courses Plus Student 4,921 PointsHi, posting now...
<link rel="stylesheet" href="css/normalized.css"
<link rel="stylesheet" href="css/main.css"
Erik Valerian
Courses Plus Student 4,921 PointsWell, now I can see that, I did not close it! :)
But, thank you for answering!
/Erik
Caleb Kleveter
Treehouse Moderator 37,862 PointsCaleb Kleveter
Treehouse Moderator 37,862 PointsCan you post your code?