I have a little problem in visual studio 2013. In my application (developed in html and javascript) i use a custom font. If i try to run my application on another pc (that didn't have installed the font) it doesn't see the font. For this reason,obviously,i can't put my app in the windows store.
Maybe i have to setting some things in Visual studio? This is the css code. Someone know what i have to do?
@font-face{
font-family: 'custom_font';
src: local('AngryBirds'), url('AngryBirds.ttf') format('truetype');
}