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 trialFrank Grillo
Front End Web Development Techdegree Graduate 16,715 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 20,496 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
231,236 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">