css – @ font-face HattoriHanzoLight不工作

前端之家收集整理的这篇文章主要介绍了css – @ font-face HattoriHanzoLight不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从这个网站下载了这个字体:

http://www.fontsquirrel.com/fonts/Hattori-Hanzo

这是我的代码

<style type="text/css">
    @font-face {
    font-family: 'HattoriHanzoLight';
    src: url('hattori_hanzo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
</style>
</head>
<body style='font-family: HattoriHanzoLight; font-size: 19px;'>
content
</body>

我的html文件和我的字体文件在同一个目录。

为什么我仍然看到默认字体?

解决方法

这段代码对我来说是有效的,所以唯一的办法是因为你有;

>文件权限不正确
>文件(从存档是大写而不是你的代码不是)
>您从具有invisible character的源代码复制和粘贴

原文链接:https://www.f2er.com/css/218590.html

猜你在找的CSS相关文章