atma
12/16/2012 - 5:36 PM

Custom @font-face typography syntax

Custom @font-face typography syntax

@font-face {
  font-family: 'MyFont';
  src: url('myfont.eot');
  src: url('myfont.eot?#iefix') format('embedded-opentype'),
    url('myfont.woff') format('woff'),
    url('myfont.ttf') format('truetype'),
    url('myfont.svg#webfont') format('svg');
}

h1 {
  font-family: 'MyFont', sans-serif;
}