Linux中的Century Gothic字体

时间:2013-04-07 03:47:56

标签: python html css django fonts

所以我使用Django,Python,HTML和CSS在mac上创建了一个网站,它使用了很多Century Gothic字体。然而,该网站将在Linux上运行,因为Linux没有字体Century Gothic,它看起来非常糟糕。我需要一种方法让Century Gothic字体在Linux上运行。

2 个答案:

答案 0 :(得分:6)

您有两种方法可以做到这一点:

  1. 在您的服务器上传一个“{ttf”和一个“eot”(对于IE9)Century Gothic Font文件,然后在您的主CSS中写下:

    @font-face {
        font-family: myFirstFont;
        src: url('URL/CenturyGothic.ttf'),
             url('URL/CenturyGothic.eot'); /* IE9 */
    }
    
  2. 您可以使用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