如何在我的bootstrap模板中使用gotham圆形字体?

时间:2016-03-04 09:18:48

标签: css

<label style="font-family: 'gotham rounded'">this is label</label>

我无法使用&#39; gotham圆形字体作为我的引导程序模板&#39;。我正在使用ubuntu进行开发可能它没有安装在我的电脑上。我将托管模板,因此它必须在Windows和ubuntu上兼容。

任何人都可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

Gotham Rounded未安装在任何操作系统上。你必须购买这个字体套件。

http://www.typography.com/fonts/gotham-rounded/styles/

这是179美元,所以除非你为一家公司工作并且他们愿意为这个项目购买,我建议使用类似的免费字体。

Similar fonts at identifont.com

答案 1 :(得分:1)

通常通过将字体导入到font-face

来完成
    @font-face{
    font-family: "Thonburi-Bold";
    src: url('Thonburi-Bold.ttf'),
    url('Thonburi-Bold.eot'); /* IE */
}

这在此进一步说明:How can I use custom fonts on a website? (可能重复?)