Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

joshua albert
165 PointsJust starting out and I'm stuck. Help!
i'm on the first challenge task, part 3/3 and for some reason i keep getting the null notification with this
<body> <style> h1{ color: green; } <h1>Nick Pettit</h1> </style> </body>
What am I doing wrong?
2 Answers

Ian Hudson
13,457 PointsJoshua,
The text "Nick Pettit" needs to be between the
<h1></h1>
Tags in your html file not your CSS file. So your css file should only have:
h1 {
color: green;
}
Hope that helps,
Ian

Ricardo Hill-Henry
38,442 Points<body>
<style>h1{color: green;}</style>
<h1>Nick Pettit</h1>
</body>
Your entire answer should look like this. You need "Nick Petit" within <h1> braces in order to style it with an h1 selector. I'm not sure how you go pass the second question without doing so. Maybe you're trying inline formatting? In that case you would do something like:
<h1 style= "color: green;">Nick Petit</h1>