I am currently trying to incorporate the custom font GopikaTwo into my hybrid application. Below is the code snippet I have added to my CSS file:
@font-face {
font-family: 'GopikaTwo' !important;
src: url('GopikaTwo.eot') !important;
src: url('GopikaTwo.eot?#iefix') format('embedded-opentype'), url('GopikaTwo.woff2') format('woff2'), url('GopikaTwo.woff') format('woff'), url('GopikaTwo.ttf') format('truetype'), url('GopikaTwo.svg#GopikaTwo') format('svg') !important;
font-weight: normal;
font-style: normal;
}
.gopika-two {
font-family: "GopikaTwo", "Roboto", "Helvetica Neue", sans-serif !important;
}
While this seems to work perfectly fine on desktop browsers like Chrome and Firefox, it's not rendering properly on Android mobile browsers such as Chrome. My ultimate goal is to get this working seamlessly in a hybrid mobile application on Android.
Do you have any suggestions on what configuration adjustments might need to be made to achieve this?