snippet: view plain - save this
1 /* save TrueType font file as ./Arial.ttf */
2
3 @font-face {
4 src:url("./Arial.ttf");
5 font-family: myFont;
6 }
7
8 Application
9 {
10 font-family: myFont;
11 font-size: 10px;
12 }
how to use embedded fonts in modules and late-load the embedded font.
1 /* save TrueType font file as ./Arial.ttf */
2
3 @font-face {
4 src:url("./Arial.ttf");
5 font-family: myFont;
6 }
7
8 Application
9 {
10 font-family: myFont;
11 font-size: 10px;
12 }
how to use embedded fonts in modules and late-load the embedded font.
0 comments