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

marcus smith
marcus smith
2,576 Points

Why cant this work with dreamweaver? this editor is TERRIBLE. hex for green is 00FF00

I tried just green and I also tried a hex number and nothing. I normally do external style sheets.

Colin Marshall
Colin Marshall
32,861 Points

You should only need to write the word green. Hex is unnecessary and will probably not pass the challenge.

Please provide your code so we can see what you are doing wrong. The Markdown Cheatsheet explains how to post code to the forum.

1 Answer

jason chan
jason chan
31,009 Points
<style>
  h1 {color:green;}
</style>
<h1>Nick Pettit</h1>

That's the solution to the challenge. You can try using sublimetext or another text editor like notepad ++. Programming is mostly script. You can use WYSIWYG to start out to understand what each different script does.