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 trialNina Fox
311 Pointswhy does it keep taking me back to challenges already completed?
How to move forward? Not certain what it is asking? I've compeleted the steps and passed the test. Why is it not letting me advances?
<h1>Nina Fox</h1>
2 Answers
Nina Fox
311 PointsThank you that is helpful.
tootiemcflow
5,601 PointsIf you look to the right of the code challenge questions you should see a back arrow and a forward arrow. Just click on the forward arrow to continue.
Just to be sure though the first question ask you to add the style
element above the heading h1
tag.
<body>
<style>
</style>
<h1>Nick Pettit</h1>
</body>
The second question ask you to select the h1
element using a element/type selector.
<body>
<style>
h1 {
}
</style>
<h1>Nick Pettit</h1>
</body>
And the final question ask you to change the h1
heading text color to green.
<body>
<style>
h1 {
color: green;
}
</style>
<h1>Nick Pettit</h1>
</body>