I've downloaded the kit of a font called Pompiere from fontsquirrel and uploaded the files. The fonts show perfectly on Safari and Chrome, but on Firefox it won't show.
I have 4 unique fonts total that I use, does anyone know a possible reason as to why it's not showing up?
Here is a part of my css:
@font-face {
font-family: 'Pompiere';
src: url('fonts/pompiere/PompiereRegular.eot'); /* IE9 Compat Modes */
src: url('fonts/pompiere/PompiereRegular.eot?#iefix') format('embedded-opentype');
src: url('fonts/pompiere/PompiereRegular.woff') format('woff'), /* Modern Browsers */
url('fonts/pompiere/PompiereRegular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/pompiere/PompiereRegular.svg') format('svg');
}
#normal-font {
font-size: 23px;
font-family: 'Pompiere', Helvetica, sans-serif; }