1. 程式人生 > >React 引入外部下載字型

React 引入外部下載字型

在css 檔案中聲名
@font-face {
  font-family: 'myFamily';  --自定義名字就好
  src: url('../../assets/LcdD.ttf');		--下載的字型檔案路徑
}
在HTML中引用 
<p style={{ color: '#FFF', fontSize: '36px', fontFamily: 'myFamily' }} ><p>