My webfont isn't showing up.
Here's the @font-face declaration. I copypasted it from fontsquirrel. The directories are relative to the css file location.
@font-face{
font-family: "DejaVu Sans Light";
src: url("../fonts/DejaVuSans-ExtraLight-webfont.eot");
src: url("../fonts/DejaVuSans-ExtraLight-webfont.eot?iefix") format('eot'),
url("../fonts/DejaVuSans-ExtraLight-webfont.woff") format('woff'),
url("../fonts/DejaVuSans-ExtraLight-webfont.ttf") format('truetype'),
url("../fonts/DejaVuSans-ExtraLight-webfont.svg#webfont") format('svg');
}
CSS:
html { font-family:"DejaVu Sans Light", arial, sans-serif; }
Firebug's net panel says the font request is returning response code 200, but it's still showing the default font.
Edit: I also tested it in Chrome and IE, and it's not working there either.