michaeldank
9/11/2017 - 12:29 AM

Adding Custom fonts with weights

Adding Custom fonts with weights

@font-face {
    font-family: "examplefont";
    src: url("/files/examplefont.eot");
    src: url('/files/examplefont.eot?#iefix') format('embedded-opentype'),
    url('/files/examplefont.woff') format('woff'),    
    url("/files/examplefont.ttf") format("truetype"),
    url("/files/examplefont.svg") format("svg");
    
    font-weight: normal;
    font-style: normal;
}