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 How to Make a Website CSS: Cascading Style Sheets Use ID Selectors

Erik Valerian
PLUS
Erik Valerian
Courses Plus Student 4,921 Points

Link 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
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

Looks 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
PLUS
Erik Valerian
Courses Plus Student 4,921 Points

Hi, posting now...

<link rel="stylesheet" href="css/normalized.css"
<link rel="stylesheet" href="css/main.css"
Erik Valerian
Erik Valerian
Courses Plus Student 4,921 Points

Well, now I can see that, I did not close it! :)

But, thank you for answering!

/Erik