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 trial

HTML How to Make a Website Beginning HTML and CSS Write a CSS Selector and Property

what is a style tag

We're starting out with an <h1> element and a <body> element. Add a <style> element just above the <h1>.

index.html

A 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>

3 Answers

Your 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
lee F
1,564 Points
<body>
  <style></style>
    <h1>Nick Pettit</h1>
</body>
Richmond Lauman
Richmond Lauman
28,793 Points

Jonathan 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.