我对使用CSS和HTML缺乏经验。
我正在建立一个网站,我想使用Century Gothic字体-但我不知道如何“导入”它。

我该怎么做?

最佳答案

如果您要专门查找Century Gothic字体,那么一种选择是在下面的link标记中使用Adobe的托管版本。如果您要导入其他字体,那么@ window.document在您的帖子中评论的链接将是理想的选择。



html {
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}

<html>
<head>
  <link rel="stylesheet" href="https://use.typekit.net/oov2wcw.css">
</head>
  This is Century Gothic
</html>

07-24 19:11