2016-02-04 58 views
1

我試過在我的網站中使用Museo字體。但我不知道如何在網站中使用它。如何使用Museo字體?

如果任何谷歌的字體像「的Roboto」,然後我可以在下面的代碼中使用的:

font-family: 'Roboto', sans-serif; 

現在如何使用博物館的字體?

我可以只使用'Museo Slap'或需要使用'Museo Slap',sans-serif;

+0

你有字體套件嗎? – devpro

+0

從網上獲取它。那不是問題。我只想知道我可以只使用'Museo Slap'還是需要使用'Museo Slap',sans-serif;這是我的問題 – Guru

+0

是的,你可以,如果你的項目中有字體套件 – devpro

回答

1

,如果你願意,你可以省略sans-serif,但我會建議保持它,因爲它提供後備支持,如果「博物館摑」不可用。

對於它的價值,我認爲Museo Slap實際上被稱爲Museo Slab

0

無論這個過程可以用在一個PHP文件中使用的文本,而不必把它放在CSS

<style type="text/css"> 
@font-face { 
    font-family: "My Custom Font"; 
    src: url(http://www.example.org/mycustomfont.ttf) format("truetype"); 
} 
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma; 
} 
</style> 
<p class="customfont">Hello world!</p> 

這僅僅是字體的TFF或WOFF格式有效。將src替換爲服務器上字體的網址。將「我的自定義字體」和「自定義字體」替換爲所需字體的名稱。

或者你可以添加的字體的代碼到style.css中:

.font-face { 
     font-family: "My Custom Font"; 
     src: url(http://www.example.org/mycustomfont.ttf) format("truetype"); 
    }