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

workspaces won't type the second curly brace. So I got the challenge wrong, due to workspaces not working correctly

additionally, the challenge added in other elements that had not been covered in lessons up to this one.

index.html
<body>
  <style></style>

    h1 {
    color: blue;

    <h1>Nick Pettit</h1>
</body>

I thought this was to be a place where I could enter a real time chat in order to ask my question. Now it appears there is no chat, and I'm unsure as to how I am to receive my answers.

Where am I supposed to see the answer(s) to my question?

1 Answer

Nick Novak
Nick Novak
2,517 Points

Hey Sam, all internal styles in html need to be within the style tags.

<body>
  <style>
    h1 {
    color: blue;
    }
 </style>
    <h1>Nick Pettit</h1>
</body>

I hope that helps.

Thanks for responding Nick. I tried to place the style within the style tag. The problem was that the space I was given to complete this challenge appeared to stop working, and would not allow me to do so, as if it were frozen. After several attempts, I was able to get it to work again,and successfully completed the challenge.