Web Open Font Format for Firefox 3.6

This article was written by John Daggett. John is a Mozilla contributor and has been working hard with font creators and web developers to improve the state of fonts on the web. This article is a high-level overview of whats different and shows some examples of WOFF in use. A full list of other supporting organizations can be found at the official Mozilla Blog.

In Firefox 3.5 we included support for linking to TrueType and OpenType fonts. In Firefox 3.6 we’re including support for a new font format – the Web Open Font Format, or WOFF. This format has two main advantages over raw TrueType or OpenType fonts.

  1. It is compressed, which means that you will typically see much smaller download sizes compared with raw TrueType or OpenType fonts.
  2. It contains information that allows you to see where the font came from – without DRM or labeling for a specific domain – which means it has support from a large number of font creators and font foundries.

The WOFF format originated from a collabaration between the font designers Erik van Blokland and Tal Leming with help from Mozilla’s Jonathan Kew. Each had proposed their own format and WOFF represents a melding of these different proposals. The format itself is intended to be a simple repackaging of OpenType or TrueType font data, it doesn’t introduce any new behavior, alter the @font-face linking mechanism or affect the way fonts are rendered. Many font vendors have expressed support for this new format so the hope is this will open up a wider range of font options for web designers.

Details on Differences between TrueType, OpenType and WOFF

First, compression is part of the WOFF format so web authors can optimize the size of fonts used on their pages. The compression format is lossless, the uncompressed font data will match that of the original OpenType or TrueType font, so the way the font renders will be the same as the original. Similar compression can be achieved using general HTTP compression but because compression is part of the WOFF format, it’s simpler for authors to use, especially in situations where access to server configuration is not possible.

Second, the format includes optional metadata so that a font vendor can tag their fonts with information related to font usage. This metadata doesn’t affect how fonts are loaded but tools can use this information to identify the source of a given font, so that those interested in the design of a given page can track down the fonts used on that page. Fonts in WOFF format are compressed but are not encrypted, the format should not be viewed as a “secure” format by those looking for a mechanism to strictly regulate and control font use.

Note: until Firefox 3.6 ships, users can test the use of WOFF fonts with Firefox nightly builds.

Examples

Below is a simple example that shows how to construct an @font-face rule that links to a WOFF font. To support browsers that only support direct linking to OpenType and TrueType fonts, the ‘src’ descriptor lists the WOFF font first along with a format hint (“woff”), followed by the TrueType version:

/* Gentium (SIL International) */

@font-face {
  font-family: GentiumTest;
  src: url(fonts/GenR102.woff) format("woff"),
       url(fonts/GenR102.ttf) format("truetype");
}

body {
  font-family: GentiumTest, Times, Times New Roman, serif;
}

Structured this way, browsers that support the WOFF format will download the WOFF file. Other browsers that support @font-face but don’t yet support the WOFF format will use the TrueType version. (Note: IE support is a bit trickier, as discussed below). As WOFF is adopted more widely the need to include links to multiple font formats will diminish.

Other examples below demostrate the use of WOFF formatted fonts but each example has been constructed so that it will work in any browser that supports @font-face, including Internet Explorer.

A font family with multiple faces

Using a Postscript CFF font

African Language Display

Below is an example of how downloadable fonts can be used to render languages for which font support is usually lacking. The example shows the UN Declaration of Human Rights, translated into two African languages, and how these render with default browser fonts vs. with a downloadable font suited for rendering these languages.

Note that in one of these examples that the font size goes from a 3.1MB TTF to a 1MB WOFF font and in the other from a 172KB TTF to an 80KB WOFF file.

Another Postscript CFF font

An example in Japanese

Working With Other Browsers

Firefox 3.6 will be the first shipping browser to support the WOFF format so it’s important to construct @font-face rules that work with browsers lacking WOFF support. One thing that helps greatly with this is the use of format hints to indicate the format of font data before it’s downloaded; browsers that don’t recognize a given format simply skip data in a format they don’t support.

Internet Explorer, including IE8, only supports the EOT font format and only implements a subset of the @font-face rule descriptors. This makes creating cross-platform @font-face rules that work with IE especially tricky. One solution is to make different rules for IE:

@font-face {
  font-family: GentiumTest;
  src: url(fonts/GenR102.eot);  /* for IE */
}

@font-face {
  font-family: GentiumTest;
  /* Works only in WOFF-enabled browsers */
  src: url(fonts/GenR102.woff) format("woff");
}

One minor downside of this is that IE doesn’t understand format hints and doesn’t parse @font-face URL’s correctly, it treats format hints as part of the URL, so web authors using the @font-face rules above will see the following in their access logs:

GET /fonts/GenR102.eot HTTP/1.1" 200 303536
GET /fonts/GenR102.woff)%20format(%22woff%22) HTTP/1.1" 404 335

IE successfully pulls down and uses the EOT version of the font but also tries to pull down the WOFF font with the format hint included in the URL. This fails and doesn’t affecting page rendering but it wastes valuable server resources. For more discussion, see Paul Irish’s blog post for one interesting workaround.

Another problem is that IE currently tries to download all fonts on the page, whether they are used or not. That makes site-wide stylesheets containing all fonts used on site pages difficult, since IE will always try to download all fonts defined in @font-face rules, wasting lots of server bandwidth.

Further Resources

Documentation

Latest draft WOFF specification
Original blog post on using @font-face
CSS3 Fonts working draft
MDC @font-face documentation

Tools

Jonathan Kew’s sample encoding/decoding code
woffTools – tools for examining and validating WOFF files
FontTools/TTX – Python library and tool for manipulating font data
Web-based font subsetting tool

General @font-face Examples

CSS @ Ten: The Next Big Thing
Example layout using Graublau Sans
Examples of Interesting Web Typography
The Elements of Typographic Style Applied to the Web

Font Resources

Font Squirrel
10 Great Free Fonts for @font-face
40 Excellent Free Fonts by Smashing Magazine

About John Daggett

More articles by John Daggett…


255 comments

  1. […] official endoresement and supporting organizations can be found below.  Hacks.mozilla.org also has a full post about WOFF implementation for Firefox 3.6 and beyond. We endorse the WOFF specification, with default same-origin loading […]

    October 20th, 2009 at 09:02

  2. Ivo

    Using the mentioned Firefox nightly builds you can see what WOFF could look like on a sample page FSI FontShop International designed together with the guys from Edenspiekermann using both FF Meta and FF Meta Serif to endorse the WOFF specification: edenspiekermann.com/woff.

    October 20th, 2009 at 09:55

  3. Greg K Nicholson

    Or you could put an EOT-format file at /fonts/GenR102.woff)%20format(%22woff%22)

    Then you’d be able to reduce the CSS syntax back to the first example.

    October 20th, 2009 at 10:55

  4. John Daggett

    @Ivo
    Fantastic, thanks for your support!

    @Greg K Nicholson
    Yes, but if you edited that list you would quietly break the link to the EOT font. So it’s possible but somewhat brittle in practice.

    October 20th, 2009 at 14:39

  5. Ivo

    Thanks for supporting the foundries, John.

    For those who don’t have the latest Firefox build installed [probably the bigger part of your readers], here you can find a screenshot, which shows the beautiness of typographic diversity on the web.

    October 20th, 2009 at 14:51

  6. […] Mozilla has now made a formal statement regarding support for the Web Open Font Format. Plus a nice writeup on the whys and wherefores of WOFF by Firefox font honcho John Daggett. Kudos to all who helped […]

    October 20th, 2009 at 21:15

  7. Richard Fink

    @john
    Congrats to all on a job elegantly done.
    Among font vendors it would seem you’ve gone from being the Devil incarnate to Saint John the Divine. And in the space of less than a year.
    Cool beans.

    rich

    October 20th, 2009 at 21:38

  8. John Daggett

    @Richard Fink
    Thanks. Much of the work for this was done by Tal, Erik and Jonathan, they deserve the credit for bringing this to fruition.

    Lots of devilish work ahead. More tomorrow.

    October 20th, 2009 at 22:20

  9. Tom Phelps

    For fonts with a large number of glyphs, it is important to have random access to glyph data, so that you don’t spend the time and memory reading in, say, the 32,000 glyphs of a CJK font of which you only use 100. The Deflate compression is stream based, so if you kept the glyph data compressed and read each glyph as needed, as is common and efficient practice with TrueType and OpenType fonts, then on average you would have to decompress half of the glyph data for each glyph.

    Alternatively, upon downloading the font the client could decompress all tables (if you’re uncompressing the glyph data you may as well uncompress everything since for most fonts the glyph data is by far the largest table). But if you uncompress, you may as well rely on the server’s HTTP compression and have a simpler specification. (And if there is no internal compression, the metadata could be put into a new table and WOFF fonts could be compatible with existing TrueType and OpenType.)

    What is the recommended or Mozilla way to handle fonts with large glyph data that is compressed internally?

    October 21st, 2009 at 00:20

  10. […] Firefox 3.6 will support Open Web Font, a font format that supports compression and metadata to let the origins of a typeface be tracked […]

    October 21st, 2009 at 08:11

  11. John

    Why no EOT support? Doesn’t that mean that cross-browser font support will be a pipe-dream for the foreseeable future (until IE6, IE7 AND IE8 dies, let alone the other browsers catching up)?

    What sort of file format is WOFF? Are Google/Opera/Apple/Microsoft all happy with WOFF, or is it Mozilla proprietary? Does it require dedicated tools or can it be made by hand? Has a spec been published anywhere? Is Mozilla planning making the tools to allow people to convert to and from other font formats? Are the font foundries signed up? What about the font software manufacturers?

    October 21st, 2009 at 08:12

  12. […] announced the support of the WOFF file format in the upcoming Firefox (3.6) release. WOFF fonts are a smaller, […]

    October 21st, 2009 at 08:25

  13. […] About « Web Open Font Format for Firefox 3.6 […]

    October 21st, 2009 at 09:01

  14. Raju Bitter

    Great work, will make it a lot easier to use downloadable fonts and not running into problems with making font files available on a public web server.
    Downloadable font support in Firefox 3.5 has already been added to OpenLaszlo (Ajax/JavaScript runtime), and I filed a JIRA issue to support WOFF just now!

    October 21st, 2009 at 09:04

  15. […] l’introduzione, in Firefox 3.5, dei font scaricabili in formato TrueType e OpenType, Mozilla si prepara a introdurre i propri utenti all’ennesima novità in fatto di design e web experience […]

    October 21st, 2009 at 11:06

  16. […] example given by Mozilla Hacks shows a 3.1MB TrueType Font compressed to a 1MB WOFF, quite a massive […]

    October 21st, 2009 at 16:04

  17. John Daggett

    @John
    The resources section contains links to the spec and sample code. You can read more of the background discussion of the format on the www-font mailing list.

    http://lists.w3.org/Archives/Public/www-font/

    @Tom Phelps
    Right now the format is relatively simple, tables are either compressed or not, there’s no way to do partial decompression on a given table. CJK fonts are an interesting example, you probably don’t want to send 32,000 glyphs in any form, compressed or not. A format for the future would be one that allowed separate chunks containing sets of glyphs to be downloaded and dynamically linked to the original font when needed. But that’s a very, very tricky problem. Another approach would be to consider a stroke-based format, taking advantage of the common elements in CJK glyphs. But I don’t know of any open format for stroke-based glyphs.

    October 22nd, 2009 at 06:30

  18. […] Updates for Firefox […]

    October 22nd, 2009 at 11:24

  19. […] Finally, Firefox 3.6 will support Open Web Font, a font format that supports compression and metadata to let the origins of a typeface be tracked down. […]

    October 23rd, 2009 at 07:52

  20. […] conjunction with Mozilla’s official announcement for the Web Open Font Format (WOFF) and continuing the wanky tradition of removing vowels from web app names, I introduce font dragr. […]

    October 23rd, 2009 at 14:41

  21. […] он вам генерирует .svg версию шрифта, .eot версию шрифта, и даже WOFF версию (формат для новых Firefox). Вдобавок ко всему, CSS файл с […]

    October 24th, 2009 at 03:52

  22. dfghdgdfh

    What about svg fonts?

    October 25th, 2009 at 07:42

  23. dfgdfhjdfhf

    No mentioning of svg fonts is kind of a drawback.
    Open and TrueType fonts all good but svgfonts provide a step forward because they’re vector based.
    Why doesn’t Firefox support svgfonts, they exist for a while and Opera 10 supports them.

    October 25th, 2009 at 07:47

  24. […] Además, nos permite crear una archivo WOFF que tienen varias ventajas (sobre todo en el peso) contra los TTF-OTF, este archivo será soportado por Firefox 3.6 […]

    October 27th, 2009 at 15:59

  25. […] you to upload any font file and convert it not only to EOT, but SVG as well. Then a few days later, Mozilla announces support for the WOFF format in the next release of Firefox, which had only just been announced as a draft. Only days later Font Squirrel added WOFF […]

    October 28th, 2009 at 09:57

  26. Doc

    Followed a link on Lifehacker.com here…why is it that BROWSER DESIGNERS can’t design a website with FLUID WIDTH PAGES? I’ve got a 1680×1050 screen, and the main body of the site barely takes up 50% of the width of my screen. Get a clue, designers!

    October 30th, 2009 at 18:05

  27. […] a WOFF (web open font […]

    October 31st, 2009 at 06:21

  28. עורך דין פלילי

    does WOFF support RTL ?

    November 3rd, 2009 at 05:45

  29. […] November 4th, 2009 (3:00pm) Simon Mackie No CommentsTweet This The browser war continues to rage unabated, with the end result being better products for us, the users. This past week has seen significant beta updates to my two favorite browsers: Chrome and Firefox. I’ve been playing with beta 1 of Mozilla’s Firefox 3.6. This new version of Firefox boasts improved performance, personas (the ability to easily switch between different skins for your browser), and updated support for web standards, including support for the Web Open Font Format (WOFF). […]

    November 4th, 2009 at 16:01

  30. […] and it has the backing of a wide array of type designers and type foundries. Mozilla will also include support for it in Firefox […]

    November 8th, 2009 at 22:31

  31. […] recently stumbled upon the Web Open Font Format (WOFF) when trying out the Firefox 3.6 beta, and thanks to the well documented WOFF file format, […]

    November 9th, 2009 at 02:47

  32. […] Support for the WOFF font format. […]

    November 10th, 2009 at 21:19

  33. […] Soporte para el formato de fuente WOFF. […]

    November 10th, 2009 at 22:31

  34. […] Support for the WOFF font format. […]

    November 11th, 2009 at 05:52

  35. […] native video can now be displayed full screen, and supports poster frames.Support for the WOFF font format.Improved JavaScript performance, overall browser responsiveness and startup time.Support for new […]

    November 11th, 2009 at 09:26

  36. […] Support for the WOFF font format. […]

    November 11th, 2009 at 11:01

  37. […] Support for the WOFF font format. […]

    November 11th, 2009 at 11:11

  38. […] Suporte para formatos fonte WOFF. […]

    November 11th, 2009 at 13:13

  39. […] navegador y el usuario.El video nativo abierto puede mostrarse en pantalla completa.Soporte para el formato web de fuentes abierta.Mejoras en el rendimiento de JavaScript, en la capadidad de respuesta general y a la hora del […]

    November 11th, 2009 at 19:51

  40. […] Support for the WOFF font format. […]

    November 12th, 2009 at 00:12

  41. […] формата Web Open Font Format (WOFF) для распространения шрифтов OpenType, Open Font Format или […]

    November 12th, 2009 at 00:47

  42. dellamowi_k

    I don’t think that these downloadable fonts are usable in a website design context. The fact that you can see the text change fonts at each page load is painful to the eyes.

    November 13th, 2009 at 06:39

  43. […] Support for the WOFF font format. […]

    November 13th, 2009 at 09:34

  44. […] in their latest versions, support the more common .TTF and .OTF files. Firefox 3.6 will support .WOFF which hopes to be the new standard in web font filetypes. Chrome supports .TTF and .OTF as well, […]

    November 13th, 2009 at 22:45

  45. […] Support for the WOFF font format. […]

    November 14th, 2009 at 23:24

  46. […] dem Erscheinen von Firefox 3.6 werden wir den Einsatz von WOFF kritisch in Erwägung ziehen. Für den praktischen, […]

    November 16th, 2009 at 08:30

  47. […] Support for the WOFF font format. […]

    November 16th, 2009 at 18:12

  48. […] Kew 虽然仍然在开发 TeXworks,但工作的重心已经放到了 Mozilla Firefox 3.6 的 WOFF 格式和 OpenType 复杂排版支持上,最近的一个视频里 Jonathan […]

    November 17th, 2009 at 22:47

  49. […] Played with typography on the web using WOFF fonts? […]

    November 18th, 2009 at 07:39

  50. […] Support for the WOFF font format. […]

    November 19th, 2009 at 22:07

  51. […] Support for the WOFF font format. […]

    November 20th, 2009 at 15:18

  52. […] native video can now be displayed full screen, and supports poster frames.Support for the WOFF font format.Improved JavaScript performance, overall browser responsiveness and startup time.Support for new […]

    November 20th, 2009 at 17:32

  53. dogmother

    No conversion tools yet? What is fontsquirrel using for the online converter?

    November 26th, 2009 at 18:18

  54. Brett Zamir

    Besides being an informative post, it’s great to see citations from the UDHR!

    As far as fonts supporting Unicode, I made a request at https://bugzilla.mozilla.org/show_bug.cgi?id=512619 for Mozilla to consider hosting some very basic (and free) fonts on a server which could be automatically retrieved and cached whenever Unicode characters were encountered but not supported in one’s default font support (and where font-face wasn’t specified). Rather than put the burden on developers (and avoid a potential single point of failure for their users), how about facilitating the download of basic fonts covering all specified Unicode code points for all users (without interfering with the ability for sites to cause custom fonts to be downloaded)?

    This way, the dream of Unicode–for any human script to be practically viewed along with any others without extra hurdles–could really be realized.

    November 28th, 2009 at 00:20

  55. […] Played with typography on the web using WOFF fonts? […]

    December 3rd, 2009 at 19:42

  56. […] 1996年Microsoft发起了一项名为“Core fonts for the Wed”的互联网字体标准化项目。包括Arial,Times New Roman和Verdana在内的10套字体可在Microsoft网站免费下载。由于互联网浏览器的工作原理和电脑字体自身的特点(比如版权问题),网页中的字体信息并不像图片或其他多媒体文件那样事先被下载到临时缓存文件夹中,再通过浏览器呈现出来;所有网页中的字体成分都需要调用用户系统中已有的字体文件(例如网页设计师通过CSS指定网页中的字体为Tahoma,当互联网终端的用户浏览该网页时,浏览器会根据CSS代码调用系统中的Tahoma字体文件,并完成显示),一旦用户的系统中没有指定的字体,他所看到的网页在文字显示上就是有差异的,而这种差异有时候变得非常棘手(例如网页可读性降低、设计风格改变或者页面要素布局变动等)。而比较直观的解决办法就是让尽可能多的电脑上(不论采用何种OS)都安装尽可能多相同的字体文件以争取相对一致的显示效果。这也就成为了Microsoft发起这一项目的初衷。垄断的好处就在于人多好办事,那时候的Microsoft权倾一时,尽管2002年公司以用户不断违反“最终用户协议”为由终止了该项目(真正的原因或许是Micorsoft向Mac和Linux用户叫板,Apple在2007年延长了与Microsoft的协议以确保Mac用户可放心使用这些字体,至于Linux用户命运如何就不从而知了,谁都知道Microsoft有多恨Linux),但如今这些字形已经普遍到没有人会去担心自己的电脑里是否安装了它们(果然好办事才能办好事)。其中有些字形进一步成为网页编程中默认的字体方案,也就是所谓的“Web Safe fonts”,至今仍支配着当前99%以上的网页文本。尽管现在主流的浏览器已经开始支持网页嵌入式字体(例如时下刚出炉的香饽饽Web Open Font Format),但想要撼动传统的、相对成熟的互联网字形设计也不是一蹴而就的(况且网页嵌入式字体的可行性有待研究,例如嵌入动辄四、五兆的中文字体就很不现实;还有想来让人头痛的版权问题)。 […]

    December 4th, 2009 at 03:38

  57. […] web page. Right now, every browser supports a different font format, but it looks like there may be some progress towards agreeing a common standard – here’s […]

    December 5th, 2009 at 21:34

  58. hAl

    Why not support EOT ?
    This is effectivly OpenType but in optimised form (contains OT subsets thus smaller files).
    Much more effective for webpages than opentype and truetype itself and already in use on the internet for 10 years.

    December 20th, 2009 at 05:03

  59. […] Support for the WOFF font format. […]

    December 23rd, 2009 at 07:28

  60. […] Support for the WOFF font format. […]

    December 24th, 2009 at 01:00

  61. […] Support for the WOFF font format. […]

    December 24th, 2009 at 15:55

  62. […] Suport pentru Web Open Font Format […]

    December 29th, 2009 at 04:19

  63. […] формату шрифтів WOFF (Web Open Font Format – Відкритий формат веб […]

    December 30th, 2009 at 11:05

  64. […] The problem isn’t just that foundries have yet to agree on a standard font format that protects their intellectual property. And that, even when they do, it will be a while before all browsers support that standard—leaving aside the inevitable politics that impede all standardization efforts. Those are problems, but they’re not the elephant. Call them the coyotes in the room, and they’re slowly being tamed. […]

    January 4th, 2010 at 10:51

  65. […] — for example.Future doesn’t appear to be better for webmaster: Mozilla plans to publish a new font format that will be implemented in Firefox 3.6.x (and right now only in it).This – already confirmed by […]

    January 4th, 2010 at 18:45

  66. […] setting this up, I read a little today about Mozilla’s WOFF initiative — an attempt to make fonts more flexible and accessible on the web. It remains to be seen […]

    January 5th, 2010 at 02:08

  67. […] navegador y el usuario.El video nativo abierto puede mostrarse en pantalla completa.Soporte para el formato web de fuentes abierta.Mejoras en el rendimiento de JavaScript, en la capacidad de respuesta general y a la hora del […]

    January 5th, 2010 at 07:40

  68. […] Support for the WOFF font format. […]

    January 5th, 2010 at 15:06

  69. […] WOFF font format support […]

    January 6th, 2010 at 11:25

  70. […] Support for the WOFF font format. […]

    January 9th, 2010 at 01:02

  71. […] Support for the WOFF font format. […]

    January 9th, 2010 at 11:00

  72. […] Have you seen websites using WOFF fonts? […]

    January 9th, 2010 at 13:08

  73. […] Support for the WOFF font format. […]

    January 10th, 2010 at 14:29

  74. […] Support for the WOFF font format. […]

    January 11th, 2010 at 00:02

  75. […] Support for the WOFF font format. […]

    January 11th, 2010 at 00:51

  76. […] Supporto per il formato di carattere font WOFF. […]

    January 11th, 2010 at 03:35

  77. […] visualizzazione dei video full screen e supporto per  poster frames – Supporto per il formato WOFF dei fonts – Migliorata performance di JavaScript; tempo di avvio e reattività generale del browser […]

    January 11th, 2010 at 04:43

  78. […] Have you seen websites using WOFF fonts? […]

    January 11th, 2010 at 05:26

  79. […] Support for the WOFF font format. […]

    January 11th, 2010 at 05:26

  80. […] Soporte para el formato de tipografías WOFF. […]

    January 11th, 2010 at 05:57

  81. […] native video can now be displayed full screen, and supports poster frames.Support for the WOFF font format.Improved JavaScript performance, overall browser responsiveness and startup time.Support for new […]

    January 11th, 2010 at 07:43

  82. […] navegador y el usuario.El video nativo abierto puede mostrarse en pantalla completa.Soporte para el formato web de fuentes abierta.Mejoras en el rendimiento de JavaScript, en la capacidad de respuesta general y a la hora del […]

    January 11th, 2010 at 08:16

  83. […] Support for the WOFF font format. […]

    January 11th, 2010 at 09:16

  84. […] Support for the WOFF font format. […]

    January 11th, 2010 at 09:27

  85. […] Soporte para el formato web de fuentes abierta. […]

    January 11th, 2010 at 10:27

  86. […] for the WOFF font […]

    January 11th, 2010 at 10:55

  87. […] Support for the WOFF font format. […]

    January 11th, 2010 at 12:01

  88. […] Support for the WOFF font format. […]

    January 11th, 2010 at 13:00

  89. […] Support for the WOFF font format. […]

    January 11th, 2010 at 13:00

  90. […] Support du format de polices WOFF […]

    January 11th, 2010 at 15:43

  91. […] WOFF palaikymas […]

    January 11th, 2010 at 16:26

  92. […] Open, native video can now be displayed full screen, and supports poster frames. Support for the WOFF font format. Improved JavaScript performance, overall browser responsiveness and startup time. The ability to […]

    January 11th, 2010 at 16:43

  93. […] Support for the WOFF font format. […]

    January 11th, 2010 at 19:40

  94. […] date plugins, video can now be displayed full screen, and supports poster frames, Support for the WOFF font format, improved JavaScript performance and overall browser responsiveness and startup time, Support for […]

    January 12th, 2010 at 01:04

  95. […] visualizzazione dei video full screen e supporto per  poster frames – Supporto per il formato WOFF dei fonts – Migliorata performance di JavaScript; tempo di avvio e reattività generale del browser […]

    January 12th, 2010 at 02:21

  96. […] edit: firefox 3.6 and woff http://hacks.mozilla.org/2009/10/woff/ […]

    January 12th, 2010 at 04:17

  97. […] Have you seen websites using WOFF fonts? […]

    January 12th, 2010 at 12:11

  98. […] Soporte para el formato de fuente WOFF. […]

    January 12th, 2010 at 12:36

  99. […] Support for the WOFF font format. […]

    January 12th, 2010 at 13:00

  100. […] is the improved support for CSS, DOM, HTML 5, the <video> HTML tag, poster frames for video, Web Open Font Format (WOFF), gradients for linear and radial backgrounds, multiple layered backgrounds, pointer-events […]

    January 13th, 2010 at 14:39

  101. […] increase stability. Support for a technology called the Web Open Font Format means many non-English browser users should have a faster time loading Web pages with […]

    January 13th, 2010 at 17:15

  102. […] Support for the WOFF font format. […]

    January 14th, 2010 at 07:19

  103. […] on Firefox's file system turf to increase stability. Support for a technology called the Web Open Font Format means many non-English browser users should have a faster time loading Web pages with downloadable […]

    January 14th, 2010 at 07:31

  104. […] proporcionando así una capa extra de seguridad y estabilidad a la combinación) y soporte para la tecnología WOFF (Web Open Font Format) que ayuda en la carga más rápida de los sitios con fuentes […]

    January 14th, 2010 at 08:04

  105. […] proporcionando así una capa extra de seguridad y estabilidad a la combinación) y soporte para la tecnología WOFF (Web Open Font Format) que ayuda en la carga más rápida de los sitios con fuentes […]

    January 14th, 2010 at 08:13

  106. […] Support for the WOFF font format. […]

    January 17th, 2010 at 09:47

  107. […] Support for the WOFF font format. […]

    January 17th, 2010 at 18:11

  108. […] Support for the WOFF font format. […]

    January 17th, 2010 at 19:59

  109. […] native video can now be displayed full screen, and supports poster frames.Support for the WOFF font format.Improved JavaScript performance, overall browser responsiveness and startup time.Support for new […]

    January 18th, 2010 at 05:53

  110. […] Support for the WOFF font format. […]

    January 19th, 2010 at 02:31

  111. […] Support for the WOFF font format. […]

    January 19th, 2010 at 02:36

  112. […] dem Erscheinen von Firefox 3.6 werde ich den Einsatz von WOFF kritisch in Erwägung ziehen. Für den praktischen, einheitlichen […]

    January 19th, 2010 at 11:50

  113. […] navegador y el usuario.El video nativo abierto puede mostrarse en pantalla completa.Soporte para el formato web de fuentes abierta.Mejoras en el rendimiento de JavaScript, en la capacidad de respuesta general y a la hora del […]

    January 19th, 2010 at 16:51

  114. […] Web Open Font Format (WOFF) – Imagine an open font format that supported compression and meta data. Now imagine that a lot of font foundries have expressed support for it. WOFF! […]

    January 19th, 2010 at 19:27

  115. […] 3.6 release. Woff stands for “web open font format” and is fully explained on the Mozilla Hacks Blog. Many of the large foundries and type face designers are supporting the new format including Adobe […]

    January 20th, 2010 at 00:24

  116. […] Support for the WOFF font format. […]

    January 20th, 2010 at 01:41

  117. […] el nuevo “Web Open Font Format”, admitido por un gran número de proveedores comerciales de tipografías (WOFF). CSS Gradients (degradados mediante CSS): Firefox 3.6 admite dos tipos de degradados CSS: lineal y […]

    January 20th, 2010 at 11:24

  118. […] Support for the WOFF font format. […]

    January 20th, 2010 at 12:16

  119. […] Unterstützung des WOFF Font-Dormat […]

    January 20th, 2010 at 12:21

  120. […] Designers there is now support for CSS gradients as well as WOFF (these are small fonts that you can integrate into a website). This means that not only will you be […]

    January 20th, 2010 at 12:34

  121. […] Soporte para el formato web de fuentes abierta. […]

    January 20th, 2010 at 19:09

  122. […] Support for the WOFF font format. […]

    January 21st, 2010 at 04:59

  123. […] на WOFF […]

    January 21st, 2010 at 05:02

  124. […] punto di vista degli sviluppatori del web, Firefox 3.6 introduce il supporto a WOFF — di cui per quanto mi riguarda avrei fatto più che volentieri a meno: si tratta di un formato, […]

    January 21st, 2010 at 07:21

  125. […] para el formato WOFF, un nuevo formato de tipos de letra diferente a OpenType y TrueType, diseñado especialmente para […]

    January 21st, 2010 at 09:18

  126. […] fuente en formato OpenType o TrueType en una página web. Firefox 3.6 incorpora el formato WOFF, que como ventaja utiliza fuentes comprimidas y cargan más rápido. Un buen ejemplo de uso puede […]

    January 21st, 2010 at 09:31

  127. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 09:35

  128. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 09:46

  129. […] Support for the WOFF font format. […]

    January 21st, 2010 at 09:52

  130. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 10:07

  131. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 10:11

  132. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 10:27

  133. […] ► Soporte para el formato de fuente WOFF. […]

    January 21st, 2010 at 10:35

  134. […] different skins for your browser), and updated support for web standards, including for the Web Open Font Format (WOFF). You can download it now from Mozilla for Windows, Mac and […]

    January 21st, 2010 at 10:58

  135. […] Font Support: OpenType, TrueType fonts and Web Open Font Format (WOFF) […]

    January 21st, 2010 at 10:58

  136. […] punto di vista degli sviluppatori del web, Firefox 3.6 introduce il supporto a WOFF — di cui per quanto mi riguarda avrei fatto più che volentieri a meno: si tratta di un formato, […]

    January 21st, 2010 at 11:02

  137. […] supporto ai font WOFF (Web Open Font Format) […]

    January 21st, 2010 at 11:29

  138. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 11:31

  139. […] WOFF (tipografías […]

    January 21st, 2010 at 11:32

  140. […] Support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 11:49

  141. […] Support permanent pour les polices Web téléchargeables via le nouveau format de police WOFF. […]

    January 21st, 2010 at 12:01

  142. […] Firefox 3.6 now now supports the new Wen Open Font Format (WOFF). […]

    January 21st, 2010 at 12:21

  143. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 12:31

  144. […] Le support du nouveau format de police WOFF. […]

    January 21st, 2010 at 12:35

  145. […] from encroaching on Firefox’s file system turf to increase stability; support for the Web Open Font Format, which means users viewing pages in other languages should see faster load times via downloadable […]

    January 21st, 2010 at 12:42

  146. […] Supporto esteso per i caratteri scaricabili utilizzando il nuovo formato di carattere WOFF. […]

    January 21st, 2010 at 12:59

  147. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 13:00

  148. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 13:07

  149. […] из сети, для чего была добавлена поддержка нового формата шрифтов WOFF. • Добавлена поддержка новых CSS атрибутов, таких как […]

    January 21st, 2010 at 13:14

  150. […] in the ongoing story of fonts on the web. This marks the first browser to support the emerging Web Open Font Format, or […]

    January 21st, 2010 at 13:30

  151. […] from encroaching on Firefox’s file system turf to increase stability; support for the Web Open Font Format, which means users viewing pages in other languages should see faster load times via downloadable […]

    January 21st, 2010 at 13:34

  152. […] pentru fonturi are acum pe langa OpenType si TrueType , implementat si Web Open Font Format (WOFF) • Gradienturi CSS : Firefox 3.6 suporta acum gradienturile liniare si radiale pentru CSS ce […]

    January 21st, 2010 at 13:42

  153. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 13:48

  154. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 14:14

  155. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 14:32

  156. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 14:41

  157. […] Soporte para Web Open Font Format. […]

    January 21st, 2010 at 14:41

  158. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 14:45

  159. […] Support permanent pour les polices Web téléchargeables via le nouveau format de police WOFF. […]

    January 21st, 2010 at 14:46

  160. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 14:56

  161. […] Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) CSS gradients: Supports linear and radial CSS gradients which allow for a smoother transition […]

    January 21st, 2010 at 15:26

  162. […] En plus des polices de caractères de type OpenType et TrueType, Firefox 3.6 supporte maintenant les polices standards Web Open Font Format (WOFF). […]

    January 21st, 2010 at 15:29

  163. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 16:06

  164. […] from encroaching on Firefox’s file system turf to increase stability; support for the Web Open Font Format, which means users viewing pages in other languages should see faster load times via downloadable […]

    January 21st, 2010 at 16:50

  165. […] Ulepszona obsługa czcionek WWW dzięki nowemu formatowi WOFF. […]

    January 21st, 2010 at 16:53

  166. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 17:48

  167. […] Support permanent pour les polices Web téléchargeables via le nouveau format de police WOFF. […]

    January 21st, 2010 at 17:50

  168. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 18:36

  169. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 21st, 2010 at 19:03

  170. […] サポートや、新しいウェブフォントの形式である Web Open Font Format (WOFF) 形式のサポートが注目される。また、background size や gradients […]

    January 21st, 2010 at 19:10

  171. […] alla visualizzazione dei video full screen e supporto per poster frames – Supporto per il formato WOFF dei fonts – Migliorata performance di JavaScript; tempo di avvio e reattività generale del browser […]

    January 21st, 2010 at 19:40

  172. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 20:46

  173. […] Font Support: In addition to OpenType and TrueType fonts, 3.6 now supports the new Web Open Font Format (WOFF) […]

    January 21st, 2010 at 23:48

  174. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 21st, 2010 at 23:50

  175. How-To Implement Cross-Browser @font-face Support…

    Firefox 3.6 “Final” was released today and one of the major addition is the support for the Web Open Font Format or WOFF. The result of a collaboration between the font designers Erik van Blokland and Tal Leming with help from Mozilla’s Jonathan Kew…

    January 21st, 2010 at 23:57

  176. […] on Firefox’s file system turf to increase stability; support for the Web Open Font Format, which means users viewing pages in other languages should […]

    January 22nd, 2010 at 00:15

  177. […] Implementación continuada de tipografías web descargables usando el nuevo formato WOFF de tipografías. […]

    January 22nd, 2010 at 00:40

  178. […] per aggiornarli con una certa regolarità. Migliorato inoltre il supporto a nuovi attributi CSS (WOFF) e a nuove specifiche DOM e HTML5, incluse le API per la gestione di Drag & Drop e File, con la […]

    January 22nd, 2010 at 00:58

  179. […] per aggiornarli con una certa regolarità. Migliorato inoltre il supporto a nuovi attributi CSS (WOFF) e a nuove specifiche DOM e HTML5, incluse le API per la gestione di Drag & Drop e File, con la […]

    January 22nd, 2010 at 02:15

  180. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 22nd, 2010 at 04:37

  181. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 22nd, 2010 at 05:20

  182. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 22nd, 2010 at 05:29

  183. […] Soporte para fuentes (Fonts): En adición del soporte para fuentes de OpenType y TrueType , ahora Firefox 3.6 soporta el nuevo formato Web Open Font Format (WOFF) […]

    January 22nd, 2010 at 06:58

  184. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 22nd, 2010 at 07:07

  185. […] intriguing for developers than users, but, still, Firefox now accepts and downloads smaller-sized Web Open Font Format fonts, allowing sites to more quickly show you their text the way they […]

    January 22nd, 2010 at 08:36

  186. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 22nd, 2010 at 08:40

  187. […] Supporto esteso per i caratteri scaricabili utilizzando il nuovo formato di carattere WOFF. […]

    January 22nd, 2010 at 09:54

  188. […] Nastavak podrške za download-abilne web fontove korišćenjem novog WOFF font formata. […]

    January 22nd, 2010 at 10:08

  189. […] Mozilla launched Firefox 3.6, which — among more frivolous features — supports WOFF (Web Open Font Format), the downloadable webfont format supported by most major font vendors. This […]

    January 22nd, 2010 at 11:23

  190. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 22nd, 2010 at 12:42

  191. […] Weitere Unsterstützung für herunterladbare Schriftarten unter Verwendung des neuen WOFF-Schriftartenformats. […]

    January 23rd, 2010 at 08:53

  192. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 23rd, 2010 at 09:44

  193. […] Soporta el formato de fuentes WOFF […]

    January 23rd, 2010 at 21:19

  194. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 24th, 2010 at 01:02

  195. […] Implementación continuada de tipografías web descargables usando el nuevo formato WOFF de tipografías. […]

    January 24th, 2010 at 01:29

  196. […] La version 1.9.2 du moteur de rendu Gecko est optimisée pour fonctionner sur des systèmes d’exploitation pour mobiles tels que Windows CE ou Maemo. Elle ajoute, entre autres, le support des polices WOFF, qui, contrairement aux autres formats de polices (True Type et OpenType), sont compressées, ce qui permet un meilleur rendu de texte. On l’utilise dans une feuille de style (CSS) avec la propriété @font-face , comme l’indique le blog « Mozilla Hack ». […]

    January 24th, 2010 at 04:30

  197. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 24th, 2010 at 08:17

  198. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 24th, 2010 at 14:32

  199. […] approfondir le sujet et tester: « WOFF for Firefox 3.6 ». […]

    January 24th, 2010 at 18:31

  200. […] Melanjutkan dukungan untuk web download font yang baru dengan menggunakan format font WOFF. […]

    January 24th, 2010 at 21:27

  201. […] Support for the WOFF font format. […]

    January 25th, 2010 at 01:52

  202. […] Supporto esteso per i caratteri scaricabili utilizzando il nuovo formato di carattere WOFF. […]

    January 25th, 2010 at 04:03

  203. […] поддержка Web Open Font Format (WOFF), который предполагает наличие  шрифтов OpenType, Open Font […]

    January 25th, 2010 at 05:40

  204. Christophe

    Won’t we see spammers use this feature to create spam messages that are undetectable automatically (unless using OCR or using stats on use of characters..): If I create a web font that inverts characters (‘e’ being actually shown as ‘p’ by the font): the content will look like binary data/gibberish but when displayed it will actually read as a spam message trying to sell you some medication. I can see at least http proxy filters being fooled by this system for instance, maybe even emails if your client supports this.
    Any thoughts on ways to prevent this from happening (if it hasn’t already)?

    January 25th, 2010 at 08:01

    1. Brian Riley

      These fonts are only usable on the domain where they are stored. AFAIK they cannot be used in an e-mail unless it directs you back to their site.

      You can’t download a font from a different domain at this point for your webpages, you have to host the font.

      The people that create the fonts are not particularly dumb, if it wasn’t this way they would sell exactly one copy. ;)

      January 28th, 2010 at 10:34

  205. […] Продолжено расширение возможности загрузки шрифтов из сети, для чего была добавлена поддержка нового формата шрифтов WOFF. […]

    January 25th, 2010 at 08:43

  206. […] from encroaching on Firefox’s file system turf to increase stability; support for the Web Open Font Format, which means users viewing pages in other languages should see faster load times via downloadable […]

    January 25th, 2010 at 09:57

  207. […] Support permanent pour les polices Web téléchargeables via le nouveau format de police WOFF. […]

    January 25th, 2010 at 13:27

  208. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 25th, 2010 at 13:40

  209. […] e il 20% più veloce di Firefox 3.5. Introdotto il supporto ai poster frame e formato di carattere WOFF (Web Open Font Format). Tante sono le novità, troviamo: Awesome Bar, One-Click Bookmarking, […]

    January 25th, 2010 at 13:53

  210. […] Soporte para el formato de fuente WOFF. […]

    January 26th, 2010 at 00:34

  211. […] Support for the WOFF(Web open font format) font format. […]

    January 26th, 2010 at 06:35

  212. […] Lupakan fontasi standar! Untuk para pengembang web, Anda dapat menyertakan fontasi yang Anda inginkan untuk ditampilkan pada pemirsa situs Anda. Silakan baca penjelasan tentang fitur ini untuk keterangan lebih lanjut. […]

    January 26th, 2010 at 06:44

  213. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 26th, 2010 at 07:08

  214. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 26th, 2010 at 08:06

  215. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 26th, 2010 at 09:18

  216. […] Designers there is now support for CSS gradients as well as WOFF (these are small fonts that you can integrate into a website). This means that not only will you be […]

    January 26th, 2010 at 12:20

  217. […] Tratamiento de tipografías: además de las familias estándares OpenType y TrueType incorporadas en Firefox 3.5, ahora el navegador también implementa el nuevo “Web Open Font Format”, admitido por un gran número de proveedores comerciales de tipografías (WOFF). […]

    January 26th, 2010 at 15:06

  218. […] on attending the workshops. After all, WOFF is here and is looking good (have you seen the new Firefox rendering capabilities?). And Dublin is just a quick airplane ride […]

    January 27th, 2010 at 03:27

  219. […] Beiträge zu WOFF: So kannst Du den ersten .woff-Font testen auf Fontblog und Web Open Font Format for Firefox 3.6 auf […]

    January 27th, 2010 at 04:28

  220. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 27th, 2010 at 07:05

  221. […] forward to today and now every major browser supports @font-face in some sort of fashion. Firefox just announced support for the newest supported font type: .woff. So the web font is still evolving, but the big […]

    January 27th, 2010 at 23:25

  222. […] khi hỗ trợ thêm font định dạng web mở (Web Open Font Format). Xem thông tin chi tiết tại đây. Bên cạnh đó, Firefox 3.6 cũng hỗ trợ các công nghệ web mới nhất của CSS, DOM […]

    January 28th, 2010 at 09:10

  223. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    January 31st, 2010 at 08:06

  224. DesignerSandbox

    SIMPLY FIREFOX IS THE greatest
    SUPPORT TO WOFF

    February 2nd, 2010 at 18:31

  225. Haakon Meland Eriksen

    I believe some version of this has been discussed before, so it is not a new idea as far as I know, but to someone like me it seems to be a good idea, and it would be interesting to know your thoughts on this. Anyway, the idea is to require the user to have ANY UTF-8 font available on their system and let CSS tell the browers SVG-renderer to draw a font that looks like Times, Helvetica or whatever. If this is possible, the user only needs ONE font installed and browsers styles it into whatever the designer wants it to look like. If the browser has seen this styling before it could cache it to render faster the next time round. Is this a horrible idea?

    February 24th, 2010 at 14:43

  226. עורך דין פלילי

    html5 html5 html5 !!

    March 9th, 2010 at 00:12

  227. […] se ha unido a Mozilla y a Opera en el patrocinio de la presentación del formato de archivo WOFF 1.0 (Web Open Font Format) en el World Wide Web Consortium […]

    April 21st, 2010 at 10:27

  228. […] • Soporte para el formato de fuente WOFF. […]

    May 16th, 2010 at 01:38

  229. […] ♦ Soporte para el formato de fuente WOFF. […]

    May 16th, 2010 at 01:41

  230. […] • Soporte para el formato de fuente WOFF. […]

    May 30th, 2010 at 11:02

  231. Webstandard-Blog

    I really liek the way to implement special fonts for example for asian or arabian webapps

    June 7th, 2010 at 00:09

  232. […] 시작했다. 더 중요한 사항 가운데 하나는 우리가 개발자들을 위해 WOFF라는 새 글꼴 표준을 지원한다는 […]

    June 20th, 2010 at 07:10

  233. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    August 22nd, 2010 at 05:37

  234. Mohsin Hijazee

    There is an important need about about the fonts and that is the progressive downloads instead of complete downloads. I mean that the web fonts should behave in the similar way as it is for the PDF documents. If you are using a ligature based font whose size TTF file is about 20+MB, then only a subset of the font is included instead of whole font being bundled.

    But in case of web fonts, we are downloading the whole font over HTTP which I think is a little in efficient. I do not see why it cannot be done to partially download the parts of the fonts that are really needed. Anew views on this?

    October 1st, 2010 at 00:30

  235. Nan

    Looking to integrate WOFF with a GWT application. Please suggest how I should proceed.

    December 15th, 2010 at 01:07

  236. Nan

    Looking to integrate WOFF with a GWT application. Please suggest how I should proceed.

    December 15th, 2010 at 01:08

  237. khang

    Thank a lot.
    I like very much this solfware.

    December 26th, 2010 at 03:54

  238. Anand

    How convert .woff file formate?????

    January 6th, 2011 at 00:52

    1. madsenfr

      You can use this service http://orionevent.comxa.com/otf2woff.html and have a look at http://html5demo.braincracking.org/demo/woff.php to see how to use it.

      May 4th, 2011 at 14:17

  239. […] it’s great that we have a bunch of sites experimenting with the best way to use the new WOFF format. The downside though is we could get into a situation where each of our sites uses a different […]

    January 11th, 2011 at 10:04

  240. […] developers but it is useful for web surfers as well. It is very hard to explain so just check out this webpage for more […]

    February 5th, 2011 at 21:46

  241. […] native video can now be displayed full screen, and supports poster frames.Support for the WOFF font format.Improved JavaScript performance, overall browser responsiveness and startup time.Support for new […]

    February 14th, 2011 at 06:34

  242. […] Apart from that we as designteachers were very happy to learn of the new webfonts format called woff, which allows webdesigners to use a lot more fonts that the 3-4 installed on most […]

    April 6th, 2011 at 06:22

  243. Martin

    The idea is to require the user to have ANY UTF-8 font available on their system and let CSS tell the browers SVG-renderer to draw a font that looks like Times!!

    April 27th, 2011 at 12:37

  244. madsenfr

    I made this page http://html5demo.braincracking.org/demo/woff.php to test WOFF support, but I don’t understand why it doesn’t work on latest version of Firefox and Chrome ?
    Any idea ?

    May 4th, 2011 at 14:19

  245. […] tipografía y programadores, está llamada a ser la solución más esperada de los últimos años. http://hacks.mozilla.org/2009/10/woff/ http://people.mozilla.com/~jkew/woff/woff-spec-latest.html Echadle un vistazo a este […]

    May 9th, 2011 at 15:44

  246. […] Web Open Font Format for Firefox 3.6 […]

    June 30th, 2011 at 20:31

  247. […] from abookapart, animation best practices for animation on iOS using CSS3, font-face & WOFF, CSS3 Media Queries & IE hacks & […]

    July 5th, 2011 at 20:10

  248. […] Continued support for downloadable web fonts using the new WOFF font format. […]

    August 18th, 2011 at 18:19

  249. […] Mozilla Firefox ab Version 3.6 Als erster Browser unterstützt Firefox mit der Version 3.6 das WOFF (unter Windows). Unter Mac OS X erst ab Version 3.7. Related: http://hacks.mozilla.org/2009/10/woff/ […]

    November 3rd, 2011 at 16:42

  250. Indra Sutriadi Pipii

    Why query: @font-face has no effect on the print preview in Mozilla Firefox? Whereas in Google Chrome it be?

    November 10th, 2011 at 06:20

  251. […] WOFF. WOFF is – I’ll just jump in briefly to say, like WAF is the new standard that more and […]

    July 18th, 2012 at 20:17

  252. Debt Relief

    There are some good open source font foundries out there. The ones I like are Font squirrel, the League of movable type and Unicode Font. Unfortunately most of the fonts available from these foundries are not yet available in WOFF packages, so what can I do?

    August 31st, 2012 at 07:23

    1. ian

      you can convert them online, e.g. here: http://orionevent.comxa.com/otf2woff.html

      and use them through calling them in the css-file…

      September 17th, 2012 at 13:39

Comments are closed for this article.