Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 474 Bytes

font-face.md

File metadata and controls

26 lines (17 loc) · 474 Bytes

@font-face

The @font-face at-rule expects as you would expect, simply followed by a block of properties:

 @font-face
   font-family Geo
   font-style normal
   src url(fonts/geo_sans_light/GensansLight.ttf)

 .ingeo
   font-family Geo

yielding:

  @font-face {
    font-family: Geo;
    font-style: normal;
    src: url("fonts/geo_sans_light/GensansLight.ttf");
  }
  .ingeo {
    font-family: Geo;
  }