Help Needed!
I am facing an issue with my app created using Visual Studio Community and Cordova. Everything works perfectly when I simulate it on my PC, but when I install it on my phone, the fonts just won't display correctly. I have tried all the solutions suggested on various forums, but nothing seems to work.
The code snippet causing the font issue is in the index.html file:
div>
<style scoped>
@font-face {
font-family: 'Inknut Antiqua';
font-style: normal;
font-weight: 400;
src: url(InknutAntiqua.woff2) format('woff2');
}
</style>
</div>
<div>
<h2 style="font-family: 'Inknut Antiqua'">Aqui va el Titulo</h2>
</div>
Here is my directory structure:
/Site
-----/css
-----/imgs
-----index.html
-----InknutAntiqua.woff2
P.S. I am also using Bootstrap (
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
) which might be causing conflicts as JQuery does for others.
Thank you in advance!