I have my fonts set in my style.css (http://turquoisegrotto.com/style.css) and my website still seems to use sans serif. What is the problem here? My site: http://turquoisegrotto.com/
|
|
The commas in your CSS font-family specification need to be outside the quotes. For example:
Not
Otherwise, the CSS parser thinks you're looking for a font called "Arial, Verdana, sans-serif", which clearly doesn't exist. |
||||
|
|
|
Try removing your "" from the font-family definition:
Like that. Only put the " around when you have multiple words such as
|
||
|
|
