Font Combiner generated formats


The Web Open Font Format (WOFF) is the standard web font format supported by the majority of modern web browsers, and is a World Wide Web Consortium (W3C) recommendation.

Font combiner generates both WOFF and TTF formats.

The following CSS @font-face syntax will cover the majority of modern browsers:

@font-face {
    font-family: 'custom_fc0';
    src: url('custom_fc0.woff') format('woff');
}

The font-family defined in the @font-face declaration can then be applied to an ID or class as a CSS property elsewhere in the stylesheet, in the usual way:

.your_class{
    font-family: 'custom_fc0';
}

Font Combiner scales glyph sets from oversized fonts down to size. This approach offers consistency in line height and greater flexibility to drop in custom fonts without hugely affecting page layout (allowing for more graceful degradation to fallback fonts where browsers lack support).