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

15  
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
4  
@djsadinoff: Incorrect, this question relates to WOFF specifically, the question you linked to relates to OTF. – Marcel Aug 17 '11 at 1:43
feedback

10 Answers

up vote 81 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

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
2  
At the time of asking this question 'font/woff' did not work. Can anyone confirm that it now does? – Nico Burns Feb 7 at 0:03
Exactly what I was looking for. In rails, you need to add the following line to your initializer: Mime::Type.register "font/woff", :woff – Pier-Olivier Thibault Apr 18 at 20:45
In IIS Express, you can add a mimeMap element to web.config under configuration/system.webServer/staticContent: <mimeMap fileExtension=".woff" mimeType="font/woff" /> – shovavnik May 4 at 8:24
feedback

It will be application/font-woff.

see http://www.w3.org/TR/WOFF/#appendix-b (W3C Candidate Recommendation 04 August 2011)

and http://www.w3.org/2002/06/registering-mediatype.html

From Mozilla css font-face notes

In Gecko, web fonts are subject to the same domain restriction (font files must be on the same domain as the page using them), unless HTTP access controls are used to relax this restriction. Note: Because there are no defined MIME types for TrueType, OpenType, and WOFF fonts, the MIME type of the file specified is not considered.

source: https://developer.mozilla.org/en/CSS/@font-face#Notes

link|improve this answer
2  
But as pointed by Marcel after, Chromium will recognize application/x-font-woff as per RFC 2048 until application/font-woff is accepted. – jflaflamme Mar 25 at 12:10
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

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

I have had the same problem, font/opentype worked for me:

link|improve this answer
feedback

Maybe this will help someone. I saw that on IIS 7 .ttf is already a known mime-type. It's configured as:

application/octet-stream

So I just added that for all the CSS font types (.oet, .svg, .ttf, .woff) and IIS started serving them. Chrome dev tools also do not complain about re-interpreting the type.

Cheers, Michael

link|improve this answer
'application/octet-stream' is the web server equivalent of saying "I don't know what this is". – Synchro Apr 26 at 15:02
Yes, I know. But the key point was that it worked whereas many of the more specific options didn't seem to result in the fonts being used over IIS7. My comment was more pragmatic than trying to be the most correct (because that wasn't working). – Michael Kennedy Apr 27 at 15:17
feedback

Your Answer

 
or
required, but never shown

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