markberning
12/14/2017 - 5:49 AM

CSS WEB FONTS

/* WEB FONTS 
download all your font formats into a font folder and then declare the fonts and location in css
*/

@font-face {
  font-family: 'Abolition Regular';
  src: url('../fonts/abolition-regular-webfont.eot');
  src: url('../fonts/abolition-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/abolition-regular-webfont.woff') format('woff'),
       url('../fonts/abolition-regular-webfont.ttf') format('truetype');
}

h1, h2 {
  font-family: 'Abolition Regular', Helvetica, Arial, sans-serif;
}