我对使用CSS和HTML缺乏经验。 我正在建立一个网站,我想使用Century Gothic字体-但我不知道如何“导入”。
我该怎么办?
答案 0 :(得分:0)
如果您正在寻找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>