CSS字体不起作用

时间:2012-10-08 22:13:12

标签: html css

此页面上表单标签中的字体 - http://bakebox.in/order-form/必须与此页面中的相同 - http://bakebox.in/test/ 我曾尝试为两者使用相同的字体标记,但它不起作用

font: 300 18px 'BebasNeueRegular', Arial, sans-serif;

1 个答案:

答案 0 :(得分:0)

您可能遗漏了工作版本中的@font-face声明:

@font-face {
    font-family: "BebasNeueRegular";
    font-style: normal;
    font-weight: normal;
    src: url("BebasNeue/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("BebasNeue/BebasNeue-webfont.woff") format("woff"), url("BebasNeue/BebasNeue-webfont.ttf") format("truetype"), url("BebasNeue/BebasNeue-webfont.svg#BebasNeueRegular") format("svg");
}

在wp-content / themes / in-motion / style.css样式表中。