ionic add font code example
Example 1: ionic install font
// in the fonts.scss file, add the font-face for each font file
@font-face {
font-family: 'Source Code Pro';
src: url('../assets/fonts/SourceCodePro-ExtraLight.ttf');
font-weight: 200;
font-style: normal;
}
// Import font.scss; add the following line to src > app > app.scss
@import '../theme/fonts';
Example 2: angular add font
@font-face {
font-family: lato;
src: url(assets/font/Lato.otf) format("opentype");
}