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 trialabdiwahab abdullah
248 Pointswhat is a style tag
We're starting out with an <h1> element and a <body> element. Add a <style> element just above the <h1>.
3 Answers
Jonathan Ankiewicz
17,901 PointsYour question is vague, but a style tag is a place you would write css. CSS is what you use to style(change the visual) the elements.
lee F
1,564 Points<body>
<style></style>
<h1>Nick Pettit</h1>
</body>
Richmond Lauman
28,793 PointsJonathan and lee are correct. The style tag goes in the head section and any css found between the opening and closing style tags will be applied to that specific document.
Kaitlyn murphy
Courses Plus Student 457 PointsKaitlyn murphy
Courses Plus Student 457 PointsA style tag is the tag you would use if your adding style to your hmtl page instead of having it all on your css page. here is an example
<style> body{ background-color:blue; } </style>