Answers for "ionic add font"

CSS
2

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';
Posted by: Guest on August-18-2020
1

angular add font

@font-face {
  font-family: lato;
  src: url(assets/font/Lato.otf) format("opentype");
}
Posted by: Guest on October-09-2020

Browse Popular Code Answers by Language