我從Google Fonts - Arimo下載了一種字體。 我創建了一個母版頁和樣式表,我寫了這個:將custome字體添加到網站
@font-face{
font-family:"Arimo";
src: url('../Fonts/Arimo/Arimo-Regular.ttf'),format('truetype');
}
body, html{
font-family:Arimo;
}
當我創建了一個.aspx頁面中鏈接我的母版頁,但字體不被認可。然而當我使用谷歌鏈接:
<link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet" />
它是工作。有人可以解釋我爲什麼是第一種方法不工作,我該如何解決它?
'body {font-family:'Arimo',sans-serif;}'應該修復它 – sandiprb
@sandip_rb你爲什麼這麼認爲? –
@sandip_rb它只識別無襯線字體,在其他頁面中,它甚至不會在字體系列 –