Reputation: 106
In cordova I am using the normal font which is written through p tag or h1 tag etc.
I want to write in an stylish font like BROADWAY or CASTELLAR which are available in Microsoft Office and can also be found online as tff file. Is there a way by which I can use any custom font in Cordova.
==>By Custom font I mean any font other than the default font.
Upvotes: 0
Views: 539
Reputation:
Yes it is possible.
put these in your .css file:
@face-face {
font-family: 'font name';
src: url("font address");
}
then use font-family: 'font name';
in your css code
Hope this help.
Upvotes: 2