“Como incluir fontes personalizadas em um projeto React” Respostas de código

Como adicionar fonte personalizada ao projeto de reação

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

Como incluir fontes personalizadas em um projeto 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

Respostas semelhantes a “Como incluir fontes personalizadas em um projeto React”

Perguntas semelhantes a “Como incluir fontes personalizadas em um projeto React”

Procure respostas de código populares por idioma

Procurar outros idiomas de código