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 trialShaw Kwashira
3,326 Pointscss selectors
in the html file give the h1 element the class main-heading
1 Answer
Jamie Reardon
Treehouse Project ReviewerFind your h1 element that looks like this:
<h1>My heading 1 title</h1>
Add a class attribute to the opening h1 tag like so:
<h1 class="main-heading">My heading 1 title</h1>
You always add element attributes to their opening tags.
The text in between the opening and closing h1 tags is what will output to the screen, don't forget to replace that text with what you have in the file.