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 trialVanessa Rodriguez
145 Pointsi don't know the answers
i need help
>style<
h1 {
color: blue:
}
<syle<}
Raphael Reiter
6,820 PointsYour end style code is missing a T and the first one has arrows wrong way around
<style> h1 { color: blue; } </style>
Every function has to have a beginning and end code. the difference is the slash
the other brackets are like ( ) but divided in more lines to be more visable
1 Answer
Victor Ruiz
16,570 PointsHi Vanessa,
It seem a bit confusing what you tried to code, here is an example of what I think you tried to write:
<style>
h1 {
color: blue;
}
</style>
kameron mcgowan
1,717 Pointskameron mcgowan
1,717 Points<style> h1 { color:blue; } </style>