我使用以下代码将字体嵌入我的网站。此字体在 Chrome 和 Firefox 中在线和离线都可以正常工作。但是当我上传网站时,它不会出现在 Internet Explorer 中。
我应该在我的托管站点上进行任何设置,或者是否有任何关于字符集的特定设置?
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<style type="text/css">
@font-face
{
font-family:GothamBook;
src:url('fonts/gothambook.eot');
src:url('fonts/gothambook.eot?#iefix') format('embedded-opentype'),
url('fonts/gothambook.woff') format('woff'),
url('fonts/gothambook.ttf') format('truetype'),
url('fonts/gothambook.svg#svg/gothambook') format('svg')
}
</style>
</head>
请帮助我,我想让这段代码在 Internet Explorer 中工作。