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 trialKatelyn Peters
1,681 PointsConnect the stylesheet "normalize.css" in the first <link> tag. Your first <link> element needs to have an 'href'
Connect the stylesheet "normalize.css" in the first <link> tag.
Bummer: Your first <link> element needs to have an 'href' attribute.
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>MASH</title>
ā
<link href="" rel="normalize.css">
<link href="" rel="normalize.css">
</head> <body> </body> </html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>MASH</title>
<link href="" rel="normalize.css">
<link href="" rel="normalize.css">
</head>
<body>
</body>
</html>
1 Answer
Steven Parker
231,269 PointsIt looks like you replaced the "rel" value with the file name. But the filename should go in the "href" attribute, the "rel" setting should remain as it is.
Also, for task 1 you will only work on the first link.