如何将希伯来字体嵌入到网站中?
我试图将一些希伯来语字体嵌入到网站中。
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些消息应该是警告,不应该成为问题,因为 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!
.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.