小编典典

如何在网站上使用 Google 的 Roboto 字体?

all

我想在我的网站上使用 Google 的 Roboto 字体,我正在关注本教程:

http://www.maketecheasier.com/use-google-roboto-font-
everywhere/2012/03/15

我已经下载了具有如下文件夹结构的文件:

在此处输入图像描述

现在我有三个问题:

  1. 我的media/css/main.css网址中有css。那么我需要把那个文件夹放在哪里呢?
  2. 我是否需要从所有子文件夹中提取所有 eot、svg 等并放入fonts文件夹中?
  3. 我是否需要创建 css 文件 fonts.css 并包含在我的基本模板文件中?

他用这个的例子

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-ThinItalic-webfont.eot');
    src: url('Roboto-ThinItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('Roboto-ThinItalic-webfont.woff') format('woff'),
         url('Roboto-ThinItalic-webfont.ttf') format('truetype'),
         url('Roboto-ThinItalic-webfont.svg#RobotoThinItalic') format('svg'); (under the Apache Software License). 
    font-weight: 200;
    font-style: italic;
}

如果我想要 dir 结构,我的 url 应该是什么样的:

/media/fonts/roboto


阅读 82

收藏
2022-06-23

共1个答案

小编典典

你真的不需要做任何这些。

  • 转到 Google 的Web 字体页面
  • Roboto在右上角的搜索框中搜索
  • 选择要使用的字体变体
  • 单击顶部的“选择此字体”,然后选择所需的粗细和字符集。

该页面将为您提供<link>要包含在页面中的元素,以及font-family要在 CSS 中使用的示例规则列表。

以这种方式使用 Google 的字体可以保证可用性,并减少您自己服务器的带宽。

2022-06-23