I've been trying to integrate a web font I just bought into my website (Metric, from Klim Type Foundry), and I can't get it to work with the @font-face css. The site is a wordpress site, and I'm using the Divi theme by ElegantThemes.
I've made a test page here: http://www.ansoncheung.net/font-test-page/
the sentence "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG" is set to 'Metric Bold'
Metric Bold is defined in the style sheet with (the font only came with EOT and WOFF formats):
@font-face {
font-family: 'Metric Bold';
src:url('fonts/MetricWeb-Bold.eot');
src:url('fonts/MetricWeb-Bold.eot?#iefix') format('embedded-opentype'),
url('fonts/MetricWeb-Bold.woff') format('woff'),
font-weight: normal;
font-style: normal;}
However, I do not see the fonts being loaded in the resources when inspecting the page, and the @font-face seems to have no effect.
After a ton of googling I can't figure out for the life of me what might be going wrong. Can anyone help?
Thanks!