I have encountered an issue with my web application where custom font files in .ttf, .eot, and .otf formats are being downloaded to users' local machines when they try to log in as newly registered users. Despite attempting various solutions, I have been unable to resolve this problem.
Below is the CSS code I am currently using:
@font-face { font-family: 'Open Sans'; src: local(Open Sans),url('fonts/OpenSans-Regular.eot'); src: local(Open Sans),url('fonts/OpenSans-Regular.eot #iefix') format('embedded-opentype'), url('fonts/OpenSans/OpenSans-Regular.ttf') format('truetype'); }
If anyone could offer assistance, it would be greatly appreciated.
Thank you!