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 trialTaylor Acosta
703 Pointshow do i set the color of the h1 element to green
i forgot how to set the color of the h1 element to green
4 Answers
Gurpeer Duhra
4,205 PointsIf you want the font color to be green, it should be like this
h1 {
color:green;
}
Gabriel Roczanski
Courses Plus Student 2,136 Pointsh1 { color: green; }
Jordan Thompson
3,915 Pointsh1 { color: green; }
Nolan Frazier
Courses Plus Student 38,752 Pointsh1 { color: green; }
Elijah Gartin
13,182 PointsElijah Gartin
13,182 PointsThis will go in your css file.
If you're using
<style>
inside of your<head>
element, then it should go inside there.The formatting that Gurpeer Duhra used is generally best especially as you start adding more styling to an element it will be easier to read and debug.
Thanks!