所以我使用Django,Python,HTML和CSS在mac上创建了一个网站,它使用了很多Century Gothic字体。然而,该网站将在Linux上运行,因为Linux没有字体Century Gothic,它看起来非常糟糕。我需要一种方法让Century Gothic字体在Linux上运行。
答案 0 :(得分:6)
您有两种方法可以做到这一点:
在您的服务器上传一个“{ttf”和一个“eot”(对于IE9)Century Gothic Font
文件,然后在您的主CSS
中写下:
@font-face {
font-family: myFirstFont;
src: url('URL/CenturyGothic.ttf'),
url('URL/CenturyGothic.eot'); /* IE9 */
}
您可以使用Google Web fonts
中的Century Gothic替代品(例如Didact Gothic),因此,在<head>
标签中输入此代码:
<link href='http://fonts.googleapis.com/css?family=Didact+Gothic' rel='stylesheet' type='text/css'>
并且,在CSS
:
font-family: 'Didact Gothic', sans-serif;
答案 1 :(得分:0)
使用css将字体嵌入到css中 @字体面 http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp