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 Introduction to HTML and CSS (2016) Adding a New Web Page Write the CSS

Antonio Daye
Antonio Daye
1,971 Points

i cannot get my resume page to link. The color of the font isnt changing to blue, when i make the rule in css.

i am having trouble linking my html and css resume pages.

Kishan P
Kishan P
9,921 Points

Hey ,Antonio

You need to add a link tag like this <link rel="stylesheet" href="Your HTML FILE name.css"> And make sure you add (.) to select the class and # to select the ID

Let me know if u need help with anything else.

1 Answer

Antonio Daye
Antonio Daye
1,971 Points

I added everything expect for the #, where does it go and what do you mean to select the ID

Kishan P
Kishan P
9,921 Points

Id and class are used for identifying one element.

If you don't know ID and class don't worry about that right now. You will learn it soon... but here is the easy way to change color

<p > Hello</p>

CSS to change the color

p{
color:red;
}