我的网页设计师告诉我在我的网站上使用普通常规字体。
我没找到。
任何人都知道如何使用字体素数。
body
{
font-family: ...
}
答案 0 :(得分:1)
最终结果:
<style type="text/css">
@font-face {
font-family: 'primelight';
src: url('prime_light-webfont.eot');
src: url('prime_light-webfont.eot?#iefix') format('embedded-opentype'),
url('prime_light-webfont.woff') format('woff'),
url('prime_light-webfont.ttf') format('truetype'),
url('prime_light-webfont.svg#primelight') format('svg');
font-weight: normal;
font-style: normal;
}
body {
font-family: "primelight", Verdana, Tahoma;
}
</style>
在您的网站中创建一个存储库:fonts / prime /
将主要文件放在里面,确保你有这样的东西:PrimeLight.otf
替代方案: