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 trialNeemias Barcelos
1,205 PointsThe correct tag to indicate where is the css would not be the link tag?
I chose false because the style tag does not indicate where the css is but is a way of styling directly in the html. I think the tag that indicates where the css is is the link tag.
1 Answer
Jonathon Pennewell
383 PointsThere's three ways to use CSS. You can do external like so: <link rel="stylesheet" href="style.css" type="text/css">
You can add internal tags in the head section of your HTML like so:
<style> .content { width: 100%; } </style>
Or inline style like so:
<p style="color: blue">This is a paragraph</p>