I have to add a folder with a font family that has different styles (bold, light, etc.), the fonts are in .ot, .ttf and .woff. The font family and the main folder where the fonts are is called HKExplorerSoft.
How should I add these fonts to the projects and how can I use them later in my CSS? I understand I have to create a @font-face rule, something like:
@font-face {
font-family: 'HKExplorerSoft';
src: url('assets/HKExplorerSoft/hkexplorersoft-black-webfont.woff');
}
But that doesn't work or I'm not sure how to use this in the CSS later.