I've got a staging website setup, and the paths are definitely working correctly. The fonts are working on browsers on my MacBook/my spare MacBook, and on my iPhone. But when my client checks the font on her Windows laptop, and I check it in Browser Stack on Windows the font doesn't work. Any ideas why this might be?
This is the code I'm using...
@font-face {
font-family: 'LemonTuesday';
src: url('fonts/LemonTuesday.eot?#iefix') format('embedded-opentype'),
url('fonts/LemonTuesday.otf') format('opentype'),
url('fonts/LemonTuesday.woff') format('woff'),
url('fonts/LemonTuesday.ttf') format('truetype'),
url('fonts/LemonTuesday.svg#LemonTuesday') format('svg');
font-weight: normal;
font-style: normal;
}
Screenshot of it on Macbook / Screeenshot of it on Windows
The fonts folder is within the same folder as my final main.css file.
I can't work out why this might be happening. Any ideas?