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
Max Gutiérrez
301 Points(Noob problem) How can I complete this...
(Challenge task 2 of 3 Now, write CSS that will select the h1. Don’t forget your curly braces! Important: The code you write in each task should be added to the code written in the previous task. PreviewCheck work index.html
1 <body> 2 <style></style> 3 <h1>Nick Pettit</h1> 4 </body>)
3 Answers
Jeff Busch
19,287 PointsHi Max,
If you look just below the text box area you will see something that says Markdown Cheetsheet. Also, there is a post here titled: Posting Code to the Forum by Dave McFarland. If you don't understand that maybe this will make sense: How to display code at Treehouse.
Also, perhaps you should watch the video again.
Jeff
Max Gutiérrez
301 PointsSo whats next? Given the fact that I've selected the h1 and the {}s everywhere but I keep failling ._.
Max Gutiérrez
301 PointsOk thanks Jeff, here is the problem
Challenge task 2 of 3 Now, write CSS that will select the h1. Don’t forget your curly braces!
<p><body>
<style></style>
<h1>Nick Pettit</h1>
</body>
!</p>
```
Jeff Busch
19,287 Points<style>
h1 {
rule goes here
}
</style>
Max Gutiérrez
301 PointsMax Gutiérrez
301 PointsThe actual code is (1 <body> 2 <style></style> 3 <h1>Nick Pettit</h1> 4 </body>)