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 trialadrian aguirre
235 Pointsadding color to h1
so it says to make a CSS to contain H1 which i put { <h1> } then it says to add color { <h1> .....do i close it off here or do leave the color in.. color: green;?? thanks for the help you guys
<style>
{ <h1>}
</style>
<h1>Nick Pettit</h1>
2 Answers
dzttnnlmgq
2,432 PointsHello Adrian,
In CSS if you wish to target a specific element it is done like so: element {}. Following shows with your example:
<style>
h1 {
}
</style>
<h1>Nick Pettit</h1>
Likewise, when you go to add the properties it will show as:
<style>
h1 {
color: green;
}
</style>
<h1>Nick Pettit</h1>
Hope this helps, Leon.
dzttnnlmgq
2,432 PointsI should also note that, whilst both HTML and CSS are markup languages, they both use different syntax's.
HTML uses tags to define structure to a webpage. The structure of HTML is as follows:
<tag> content </tag>
(There are exceptions regarding this structure)
Whereas, CSS uses selctors to alter the design of a webpage. CSS is as follows:
selector {
property: value;
}
:)