ruk·si

🎨 CSS
Fonts

Updated at 2014-09-24 03:07

How to include custom web fonts.

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    src: url('OpenSansRegular-webfont.eot');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: bold;
    src: url('OpenSansBold-webfont.eot');
}

Source