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 trialTrue Bey
166 Pointstag
Challenge task 1 of 3 is asking me to "tag" I don't know what its asking me I keep getting it wrong
<style>
h1 {
color: blue;
}
</style>
<h1style></style>
1 Answer
Dan Oswalt
23,438 PointsIt is probably telling you that there is a problem with one of your tags. A tag is anything you're wrapping in "<>" like "<h1>".
Here, you have <h1style>, which is not a valid tag. Your css is correct between the style tags. "<h1></h1>" are probably the tags you're looking for, if you correct this it will probably be fine.