Another thing. How does this downloading work in the browser? Will it look for the first font, and if that is not present move on to the next? Or will it download all of them?
I’m preparing some fonts for web use, and I wonder if anyone can shed some light on the current browser support for Postscript based WOFF files, and how one should ideally set up the CSS.
I have until now done the following:
@font-face {
font-family: 'MyWebfont';
src: url('webfont.eot');
src: url('webfont.eot?#iefix') format('embedded-opentype'),
url('webfont.woff') format('woff'),
url('webfont.ttf') format('truetype'),
url('webfont.svg#MyWebFont') format('svg');
font-weight: normal;
font-style: normal;
}
The WOFF is the only Postscript based font in the stack. Unfortunately this doesn’t seem to work in Chrome on Windows.
Am I doing something wrong?