Line : 9 font-family: You are encouraged to offer a generic family as a last alternative
This is the line:
font: 700 1em Verdana;
How can I fix it?Something like this:
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
should get rid of the warning. The addition of "sans-serif" is what the validator is looking for.thanks
This is the line:
font: 700 1em Verdana;
How can I fix it?Something like this:
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
should get rid of the warning. The addition of "sans-serif" is what the validator is looking for.thanks