Inital Commit
[oweals/finalsclub.git] / node_modules / jade / support / stylus / docs / font-face.md
1
2 ## @font-face
3
4  The `@font-face` at-rule expects as you would expect, simply followed by a block of properties:
5  
6  
7      @font-face
8        font-family Geo
9        font-style normal
10        src url(fonts/geo_sans_light/GensansLight.ttf)
11
12      .ingeo
13        font-family Geo
14
15 yielding:
16
17
18       @font-face {
19         font-family: Geo;
20         font-style: normal;
21         src: url("fonts/geo_sans_light/GensansLight.ttf");
22       }
23       .ingeo {
24         font-family: Geo;
25       }
26