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 trialDavis KImoto
928 PointsIt will not work
When I take working code from workplaces into the coding challenge it will not work. Please help!
Davis KImoto
928 PointsI go from this:
<body>
<style>
<h1 {
}>Davis Kimoto</h1>
</style>
<body>
Which that is checked off as being okay, but then I do this to change the header to the color green:
<body>
<style>
<h1 {
color:green;
}>Davis Kimoto</h1>
</style>
<body>
The only thing it says is "Bummer null"
3 Answers
Jeff Busch
19,287 PointsHi Davis,
Look at the code below and study the order that things are laid out. In your code you have things all mixed up.
Jeff
<body>
<style>
h1 {
color: green;
}
</style>
<h1>Davis Kimoto</h1>
</body>
Davis KImoto
928 PointsOK, thank you so much Jeff.
James Barnett
39,199 PointsDavis KImoto - I think you are conflating CSS & HTML syntax.
Jeff Busch
19,287 PointsJeff Busch
19,287 PointsPlease show use your code.