snippets / Embedded Fonts in Modules

Language: Css - First posted by mako on 2008-01-5 19:42 (10 months, 2 weeks)
Link to the snippet: http://www.friendsnippets.org/snippet/135/

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 }
In order to post a comment, you should have a friendsnippet account. Please sign-in.

0 comments

Jan '08
  • how to use embedded fonts in modules and late-load the embedded font.