up vote 66 down vote favorite
21
share [g+] share [fb]

What mime type should WOFF fonts be served as?

I am serving truetype (ttf) fonts as font/truetype and opentype (otf) as font/opentype, but I cannot find the correct format for WOFF fonts.

I have tried font/woff, font/webopen, and font/webopentype, but Chrome still complains:

"Resource interpreted as font but transferred with MIME type application/octet-stream."

Anybody know?

link|improve this question

14  
Wikipeda states application/x-woff referencing the Web FontFont User Guide fontshop.com/blog/newsletters/pdf/webfontfontuserguide.pdf – Yi Jiang Aug 29 '10 at 12:59
So there's no way to stop Chrome complaining? – John Mee Sep 23 '10 at 8:24
This question Duplicates stackoverflow.com/questions/2871655/proper-mime-type-for-fonts – djsadinoff Jul 17 '11 at 7:24
1  
@djsadinoff: Incorrect, this question relates to WOFF specifically, the question you linked to relates to OTF. – Marcel Aug 17 '11 at 1:43
feedback

9 Answers

up vote 49 down vote accepted

In January it was announced that in the meantime Chromium will recognize

application/x-font-woff

as the mime-type for WOFF. I know this change is now in Chrome beta and if not in stable yet, it shouldn't be too far away.

link|improve this answer
feedback

@Nico,

Currently there is no defined standard for the woff font mime type. I use a font delivery cdn service and it uses font/woff and I get the same warning in chrome.

Reference: The Internet Assigned Numbers Authority

link|improve this answer
feedback

For me, the next has beeen working in an .htaccess file.

AddType font/ttf .ttf
AddType font/eot .eot
AddType font/otf .otf
AddType font/woff .woff
link|improve this answer
I can't believe more people haven't found this helpful. This is the only one that worked for me. – Tim Joyce Oct 28 '11 at 18:08
feedback

It will be application/font-woff.

see http://www.w3.org/TR/WOFF/#appendix-b and http://www.w3.org/2002/06/registering-mediatype.html

link|improve this answer
feedback

There is no font MIME type! Thus, font/xxx is ALWAYS wrong.

link|improve this answer
feedback

WOFF:

  1. Web Open Font Format
  2. It can be compiled with either TrueType or PostScript (CFF) outlines
  3. It is currently supported by FireFox 3.6+

Try to add that:

AddType application/vnd.ms-fontobject .eot
AddType application/octet-stream .otf .ttf
link|improve this answer
feedback

IIS automatically defined .ttf as application/octet-stream which seems to work fine and fontshop recommends .woff to be defined as application/octet-stream

link|improve this answer
feedback

I have had the same problem just a moment ago and this is the solution that worked for me:

font/opentype
link|improve this answer
1  
That works by fooling chrome into thinking it's a different type of font than it actually is. According to Marcel "application/x-font-woff" is what you should be using right now. Thanks for your answer :) – Nico Burns Mar 8 '11 at 16:26
feedback

Maybe this will help you:

Serving web fonts from IIS

@font-face {
font-family: 'VegurRegular';
src: url('Vegur-R_0500.eot');
src: local('Vegur'),
     local('Vegur-Regular'),
     url('Vegur-R_0500.woff') format('woff'),
     url('Vegur-R_0500.ttf') format('truetype'),
     url('Vegur-R_0500.svg#Vegur-Regular') format('svg');

}

link|improve this answer
5  
OP's server might be sending .woff files as some different kind of MIME type, hence the question, so CSS might not be able to help with this. – BoltClock Sep 4 '10 at 5:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.