This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by JoAnne Baldwin
over 9 years

Verdana!

I still have not been able to resolve this question, so am editing and updating my request here: I am coming up with an error message that reads, “Don’t forget to set your h1 font to Verdana!” yet, my code is correct. Am I missing something? Thanks for your help; CSS is below from the exercise.

h1 { font-family: Verdana; color: #576D94; } p { font-family: cursive; color: #4A5943; }

Answer 545d210b7c82caae1b0000b6

0 votes

Permalink

It does not go like:

h1 {
font-family: Verdana;
color:#576D94;
}
p {
font-family:cursive;
color:#4A5943;
}

It goes like:

h1 {
font-family: Verdana;
color: #576D94;
}
p {
font-family: cursive;
color: #4A5943;
}

You need to put in spaces in the right spot.

points
Submitted by awooten01
over 9 years

3 comments

JoAnne Baldwin over 9 years

now it reads as you suggested, yet the error message remains. Any other ideas? I’ve included my code below: h1 { font-family: Verdana; color: #576D94; } p { font-family: cursive; color: #4A5943; }

m_wolff over 9 years

I found a comment from a year ago that worked!

I just copied and pasted the code below into the index.html (even though it looks exactly like the code I already have, there must have been a spacing difference, as it solved the Verdana problem). See below:

Rafael Menis 1 year ago Since the system is deleting key code between pages sometimes, make sure that you have in your head section.

saremorg over 9 years

bless you, BLESS you! I’ve been trying to figure that friggin’ thing out for two weeks. THANK YOU!!

Answer 545d92289c4e9d369100124c

0 votes

Permalink

I am getting the same error message. The code is correct as far as I can tell. It this a bug?

points
Submitted by Daniel Politz
over 9 years

1 comments

James Lyman over 9 years

I’m having the same issue. Found a thread about it from a year ago but didn’t find any answers that worked!

Answer 558f6224937676bb54000392

0 votes

Permalink

copy and paste this to replace the link code as mentioned in the comment from 7 months ago, without the first space between < and link:

< link type=”text/css” rel=”stylesheet” href=”stylesheet.css”/>

I don’t know why it worked but it did!

points
Submitted by lbridgman91
almost 9 years