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 trialDaniel Busch
6,997 PointsThe editor is complaining that my style tags are not there, but it is identical to the exercise example
I really don't know whats going on. I double checked the work and can't find the problem
<style>
h1 {
color: red;
}
</style>
<body>
<h1>Nick Pettit</h1>
</body>
1 Answer
Sara Chicazul
7,475 PointsWhich task are you on? The first task instructs you to put style tags above the h1 element, and you have put it above the body element. Could that be your problem?
Daniel Busch
6,997 PointsDaniel Busch
6,997 PointsI found the mistake. Apparently the exercise wanted the style tags only and not the h1 color property. Thanks