Apologies in advance for the repeated inquiries, but despite my efforts, I cannot seem to find a solution.
I am attempting to utilize a downloaded font that I've placed in a "fonts" directory. This folder resides alongside all of my webpages.
The specific font file is named "timeburnernormal.ttf" and its font name is "TimeBurner"
CSS
@font-face {
font-family: 'TimeBurner';
src:url("fonts/timeburnernormal.ttf");
}
h1 {
font-family: 'TimeBurner';
font-weight:normal;
font-size:27pt;
}
While changing the font family within the h1 class works with any other installed font on my computer, it does not seem to function using this particular method. Could it be an issue with my CSS?
Thank you