I'm stuck on number 12 on UNIT 4: css An overview

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/web-beginner-en-TlhFi/1/6?curriculum_id=50579fb998b470000202dc8b#

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Oops, try again. Did you remember to make your h1 font-family Verdana?

```

/i’m sleepy/
h1 {
font-family: Verdana;
}
h3 {
font-family: Garamond;
}
p {
color:Purple;
}/grr!/

<do not remove the three backticks above>

Try changing the h1 font in the index.html and not on stylesheet.css

To add a font/size or color to an h1 tag (p tag, etc…) directly, you do this:

<h1 style="font-family: Verdana">I'm an h1 header</h1>

Did you remember to link up your html to your css? It’s important to do so or else your css isn’t actually going to be styling anything.

Thank you! :slight_smile:

1 Like

Np, I’m glad to help :slight_smile:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.