font-face url code example
Example 1: font face
@font-face {
font-family: myFirstFont;
src: url(sansation_light.woff);
}
Example 2: how to find a fontface url
@font-face {
font-family: Chunkfive;
src: url('Chunkfive.otf');
}
@font-face {
font-family: myFirstFont;
src: url(sansation_light.woff);
}
@font-face {
font-family: Chunkfive;
src: url('Chunkfive.otf');
}