Why won't this TTF font work in my browser?

2019-07-25 16:02发布

I downloaded a TTF font called "Clunk" and I'm trying to apply it to some text.

Here's the code I'm using:

<html>
<head>
<style>
@font-face {
    font-family: clunk;
    src: url('clunk.ttf');
}

h1 {
    font-family: clunk;
}
</style>
</head>
<body>
<h1 id="logo">Test</h1>
</body>
</html>

This doesn't seem to work and Chrome is giving me two errors:

Failed to decode downloaded font: (path to the file)
OTS parsing error: incorrect entrySelector for table directory

In Firefox, these are the errors that appear:

downloadable font: bad search range (font-family: "clunk" style:normal weight:normal stretch:normal src index:0) source: (path to the file)  test.html:4:12

downloadable font: incorrect entrySelector for table directory (font-family: "clunk" style:normal weight:normal stretch:normal src index:0) source: (path to the file)  test.html:4:12

downloadable font: rejected by sanitizer (font-family: "clunk" style:normal weight:normal stretch:normal src index:0) source: (path to the file)

I Googled around for those errors but this problem seems to be very broad and it was hard to find minimal examples. What would be causing the error in this simple situation?

5条回答
2楼-- · 2019-07-25 16:21

Try this

src: url('/clunk.ttf');
查看更多
姐就是有狂的资本
3楼-- · 2019-07-25 16:23

I found this answer from 2009 that suggested rebuilding the font with FontForge. I tried that out and it solved the problem, so it appears to have been a problem with the font itself rather than the code.

In this particular case, the letters in the font were "missing points at extrema", which FontForge was able to solve with a single click.

查看更多
Viruses.
4楼-- · 2019-07-25 16:25

Check your paths, Best practices is to always use a relative paths (Ex:)

 src: url('fonts/clunk.ttf') format('truetype');

Check header: Access-Control-Allow-Origin

enter image description here

查看更多
女痞
5楼-- · 2019-07-25 16:27

Go to:

http://yourwebsite/clunk.ttf

If that can not download (as the first error states), then your file location is not correct. You might have to set an absolute path like:

http://yourwebsite/somesubpath/clunk.ttf

Or

/somesubpath/clunk.ttf

查看更多
走好不送
6楼-- · 2019-07-25 16:37

This may help you.

https://everythingfonts.com/ttf-to-woff

Basically what you need to do is:

-Convert the .ttf to .woff

I don't know why converting it works. But it always work for me. Also… delete your cache or change the name of the file.

I hope this helps

查看更多
登录 后发表回答