After purchasing a font to use in a web site I am working on, I can't get the font to work in MS Internet Explorer. It works in FF and Chrome. I have the font in the same directory as the .css file.
In my .css file I have:
@font-face {
font-family: 'stnzq'; /*a name to be used later*/
src: url('gill-sans-mt-597cad0a854c6.ttf'); /*URL to font*/
}
and I them use the following:
.clientname-text {
font-family: stnzq;
font-size: 2.3vw;
color: #A7C1E3;
display: flex;
align-items: center;
}
Can anyone see why this not work?