I have added font awesome to my ionic 1 app , I have created fonts folder and reference the style sheet in the HTML page ,
The icons showing in the browser but not showing in any android device.
I have added font awesome to my ionic 1 app , I have created fonts folder and reference the style sheet in the HTML page ,
The icons showing in the browser but not showing in any android device.
Issue solved, please follow this link Use Font Awesome Glyph Icons With Ionic Framework
, to get bigger size icons you need to add this line to your CSS file
font-size: 25px !important;
Thank you everyone for your support.
You need to have the font file for FontAwesome, say fontawesome.ttf. Next, what you have to do is just include that file in your CSS file. Here I will assume that both the CSS file and the font file are located in the same directory.
Now you can use FontAwesome throughout your application or webpage by just setting the
font-family
property toFontAwesome
whereever needed.