Encountering a small issue with Visual Studio 2013. My application, developed using html and javascript, utilizes a custom font. When attempting to run the application on a different computer that does not have the font installed, it fails to display correctly. As a result, I am unable to publish my app in the Windows Store.
I wonder if there are specific settings I need to adjust in Visual Studio? Here is the CSS code snippet. Can anyone provide guidance on what steps need to be taken?
@font-face{
font-family: 'custom_font';
src: local('AngryBirds'), url('AngryBirds.ttf') format('truetype');
}