gpt4 book ai didi

html - 我无法使用 @font-face 规则在 html 页面中嵌入字体

转载 作者:太空宇宙 更新时间:2023-11-04 04:25:32 24 4
gpt4 key购买 nike

我尝试使用@font-face 规则向我的网页添加字体,但它没有显示

HTML

<!-- language: lang-html -->

<ul>
<li>GREAT</li>
<li>BITE</li>
</ul>

CSS

<!-- language: lang-css -->

body{
font-family:Armata;
font-size:16px;
color:orange;
text-align: center;
background:white;
}

@font-face {
font-family: 'Armata';
src: url(Armata-Regular.ttf),
src: url(Armata-Regular.otf),
src: url(Armata-Regular.eot);
}

您可以从这里下载字体:http://www.moldire.com

最佳答案

您需要将 font-face 放在 CSS 的顶部。

   @font-face {
font-family: 'Armata';
src: url(Armata-Regular.ttf),
src: url(Armata-Regular.otf),
src: url(Armata-Regular.eot);
}
body{
font-family:Armata;
font-size:16px;
color:orange;
text-align: center;
background:white;
}

关于html - 我无法使用 @font-face 规则在 html 页面中嵌入字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18335716/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com