I've encountered an issue with a font on my website. I'm using DIN Regular True Type Font and declaring it as follows:
@font-face {
font-family: 'DINRegular';
src: url('../fonts/DINBek-Regular.ttf') format('truetype'),
}
body {
font-family: 'DINRegular', Tahoma, Geneva, sans-serif;
}
Despite setting the font family to "DINRegular" in the code inspector, an accordion on my site keeps displaying Times New Roman instead. The Computed tab also shows Times New Roman as the rendered font. Any suggestions on how to resolve this issue?