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

link question

<html> <meta charset"utf-8" <title>family web site</title> <link rel"stylesheet" href"C:\Users\malik\Desktop\Web development\HTML\normalize.css"> my normalize file wont respond for me

can you post your link statement?

1 Answer

Typically the only thing that would cause a stylesheet not to be applied is not properly referencing it in the HTML head section. Usually this is either a directory error, or more often in my case, a spelling error. Since many projects will use multiple CSS files, it is also important to make sure your normalize.css link is at the top of the list.

CSS links should look something like this...

<head>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
</head>