実際にフォントからどのフォントが必要ですか?
それは同じくらい簡単です: http://fonts.googleapis.com/css?family=Ubuntu:regular,bold,italic リターン:
@media screen {
@font-face {
font-family: 'Ubuntu';
font-style: italic;
font-weight: normal;
src: local('Ubuntu Italic'), local('Ubuntu-Italic'), url('http://themes.googleusercontent.com/static/fonts/ubuntu/v4/kbP_6ONYVgE-bLa9ZRbvvvesZW2xOQ-xsNqO47m55DA.woff') format('woff');
}
}
@media screen {
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: normal;
src: local('Ubuntu'), url('http://themes.googleusercontent.com/static/fonts/ubuntu/v4/_xyN3apAT_yRRDeqB3sPRg.woff') format('woff');
}
}
@media screen {
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: bold;
src: local('Ubuntu Bold'), local('Ubuntu-Bold'), url('http://themes.googleusercontent.com/static/fonts/ubuntu/v4/0ihfXUL2emPh0ROJezvraD8E0i7KZn-EPnyo3HZu7kw.woff') format('woff');
}
}
は「SRC」プロパティで見られるように、使用したいWOFFファイルのそれぞれをダウンロードして、あなたの静的なディレクトリにこれらを配置し、あなたのURLと一致するようにCSSの 'src' URLを変更してください。 http://themes.googleusercontent.com/static/fonts/ubuntu/v4/_xyN3apAT_yRRDeqB3sPRg.woff /static/ubuntu_normal.woff
で 場所にそれをして、次のCSS作成:
EGは、通常のフォントのために、あなたがダウンロードする必要があります
@media screen {
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: normal;
src: local('Ubuntu'), url('/static/ubuntu_normal.woff') format('woff');
}
}
をあなたはをそれぞれ追加する必要があります太字、イタリックなどのフォントスタイルまたはフォントフェース。
Nullableは良い点を示します。クライアントはinterentに接続していますか? – Joe