I have the following fonts
:
Rubik-Bold.ttf
Rubik-MediumItalic.ttf
Rubik-Black.ttf
I want to use these fonts
for example in each one:
<p class="bold">Hola</p>
<p class="medium">Hola</p>
<p class="black">Hola</p>
I guess I'll have to do something like this in my app.css
@font-face { */
font-family: 'Rubik-Bold.ttf';
}
and that file .ttf
have it at the same height as my app.css
, but let's imagine that I have 30 files .ttf
in a folder,
Is there any way to import them easier?