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!
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
Frank Grillo
Front End Web Development Techdegree Student 10,254 PointsLinking a CSS Stylesheet to an HTML page
I need help linking the CSS to my HTML page in Project 2 in Front End Tech Degree. And I also need help correctly linking all of the images too.
2 Answers

Gavin Eyquem
Front End Web Development Techdegree Student 18,758 PointsIf you wish, you can look at this link and observe what it looks like and what is there. <link rel="stylesheet" href="css/main.css" type="text/css"> No, the link isn't clickable and goes no where, it's just an example.

Steven Parker
224,849 PointsFor more detailed help, you'd need to show your code, preferably by sharing a snapshot of your workspace.
But the most basic way to link a CSS file is to include a "link" in the head section of the HTML:
<link rel="stylesheet" href="my_stylesheet.css">