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

Css and go back

Now, write CSS that will select the h1. Don’t forget your curly braces! what does this mean and how do i go back and watch the video on this course it seem to just skip to the questions

index.html
<h1>Nick Pettit</h1>
<style></style> <h1>Gabriel Arreola</h1>

1 Answer

Henrik Christensen
seal-mask
.a{fill-rule:evenodd;}techdegree
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points

To watch the videos again just click the white circles with checkmarks above the challenge - or go back to the course "main-page" and scroll down until you find the video you're looking for.

About this challenge:

You're told to make style-tags above the h1-tag

<style>
</style>
<h1>Nick Pettit</h1>

And this is how you select the h1:

<style>
h1 {
}
</style>
<h1>Nick Pettit</h1>