“Jak uwzględnić niestandardowe czcionki do projektu React” Kod odpowiedzi

Jak dodać niestandardową czcionkę do reaktowania projektu

@font-face {
  font-family: "AssistantRegular";
  src: local("AssistantRegular"),
    url("./fonts/assistant.regular.ttf") format("truetype");
  font-weight: normal;
}
Kami

Jak uwzględnić niestandardowe czcionki do projektu React

/*Create a directory "fonts" in your src folder
Move your font files in the "fonts" directory
Create / In your App.css file, you can use them as followed
*/

@font-face {
  font-family: 'MyFont';
  src: local('MyFont'), url(./fonts/MyFont.woff) format('woff');
  /* other formats include: 'woff2', 'truetype, 'opentype',
                            'embedded-opentype', and 'svg' */
}

/*Import the App.css file in your App.js*/
Strange Seahorse

Odpowiedzi podobne do “Jak uwzględnić niestandardowe czcionki do projektu React”

Pytania podobne do “Jak uwzględnić niestandardowe czcionki do projektu React”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu