Acorde ® Font Family – Designed by Stefan Willerstorfer, 2005–2010
Webfont Guide
As explained in the section Font Formats our webfonts are available in two different formats. Please choose the format that suits your exact needs best. Webfonts are licensed for a fixed number of websites, and a fixed number of unique monthly visitors in total. All websites need to be specified during the ordering process and must belong to the same company or household.
Webfont self-hosting
Our webfonts are provided for self-hosting only. The use of third party font hosting services is strictly prohibited. The webfonts have to be stored on and served from the same device and location as the other data on your website. Your use is restricted to styling HTML documents using the CSS rule @fontface.
Once you have put the webfonts in the webfonts folder on your web server you need to activate the webfonts via a CSS file.
Using WOFF webfonts
For the activation of WOFF webfonts only, the code in your CSS file should look like this:
@font-face {
font-family: 'MyWebfont';
src: url('fontname.woff');
}
Now you can add the specified webfont to your CSS tags. You may want to list alternative fonts for the small minority of outdated browsers that do not support the WOFF format:
body {
font-family: MyWebfont, Georgia, serif;
}
Using WOFF and EOT webfonts
For the simultaneous activation of WOFF and EOT webfonts, the code in your CSS file should look like this:
@font-face {
font-family: 'MyWebfont';
src: url('fontname.eot'); /* >= IE9 */
src: url('fontname.eot?#iefix') format('embedded-opentype'), /* IE8 */
url('fontname.woff') format('woff'); /* Modern Browsers */
}
body {
font-family: MyWebfont, Georgia, serif;
}