0

In develop websites, we use several font file type such as: .ttf, .svg, .woff, .woff2 and ... in @font-face because of the variety of browsers.

Now, Which font file type needed for Ionic apps?

Morteza QorbanAlizade
  • 1,520
  • 2
  • 19
  • 35

1 Answers1

0

In develop websites, we use several font file type such as: .ttf, .svg, .woff, .woff2 and ... in @font-face because of the variety of browsers.

No we do not.

In 2016, coming on to 2017, we don't need any of those formats except for WOFF/WOFF2, because some of those formats don't exist anymore (eot, svg), and some of them are not for the web but are universal system fonts with far stricter parsing rules (ttf, otf).

See https://stackoverflow.com/a/37091681/740553 for the more detailed explanation.

Community
  • 1
  • 1
Mike 'Pomax' Kamermans
  • 49,297
  • 16
  • 112
  • 153