“Cara memasukkan font khusus dalam proyek bereaksi” Kode Jawaban

cara menambahkan font khusus ke proyek bereaksi

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

Cara memasukkan font khusus dalam proyek bereaksi

/*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

Jawaban yang mirip dengan “Cara memasukkan font khusus dalam proyek bereaksi”

Pertanyaan yang mirip dengan “Cara memasukkan font khusus dalam proyek bereaksi”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya