如何将希伯来字体嵌入到网站中?

发布于 2024-09-19 19:36:53 字数 403 浏览 7 评论 0原文

我试图将一些希伯来语字体嵌入到网站中。

在我的 css 文件中使用此代码:

@font-face { 字体系列:tamruta; src: url('/css/tamruta.eot'); src: 本地(tamruta), url('/css/tamruta.ttf') 格式('opentype'); 它

应该适用于所有浏览器。 一些它不起作用,并且我在尝试上传应用程序(使用appengine)时进行了按摩:

无法猜测css/tamruta.ttf的mimetype。使用应用程序/八位字节流。 无法猜测 css/tamruta.eot 的 mimetype。使用应用程序/八位字节流。

你有什么想法吗? 或者也许是另一种将字体嵌入到我的网站的方法。

谢谢,阿里克

I was trying to embed few hebrew fonts to a website.

using this code in my css file :

@font-face
{
font-family: tamruta;
src: url('/css/tamruta.eot');
src: local(tamruta), url('/css/tamruta.ttf') format('opentype');
}

it supposw to work on all browsers.
some how it doesn't work, and I have a massage while trying to upload the application (working with appengine) :

Could not guess mimetype for css/tamruta.ttf. Using application/octet-stream.
Could not guess mimetype for css/tamruta.eot. Using application/octet-stream.

Do you have any idea?
or maybe another way to embed fonts to my website.

thanks, arik

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落花随流水 2024-09-26 19:36:53

这些消息应该是警告,不应该成为问题,因为 OpenType 字体没有官方的 MIME 类型。不过,如果可能的话,您应该将 EOT 文件作为 application/vnd.ms-fontobject 发送。

编辑:它似乎对我来说效果很好!

Those messages should be warnings and shouldn't be a problem, as there is no official MIME type for OpenType fonts. You should send your EOT files as application/vnd.ms-fontobject if possible, though.

Edit: It seems to work just fine for me!

夜吻♂芭芘 2024-09-26 19:36:53

.eot 仅适用于 IE。

转至 FontSquirrel 站点,使用 @font-face Kit Generator。它将创建跨浏览器支持所需的所有文件。

.eot is only for IE.

Go to the FontSquirrel site, use the @font-face Kit Generator. It will create all the files you need for cross-browser support.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文