gpt4 book ai didi

html - 使用字体在 HTML 中使用本地字体

转载 作者:太空狗 更新时间:2023-10-29 15:48:42 25 4
gpt4 key购买 nike

我尝试使用本地字体在 html 中应用样式,下面是代码。字体未应用于 harlow 类使用的元素

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: myFirstFont;
src:local("C:\Users\Website\fonts\Harlow_Solid_Italic.ttf");
}

.harlow{
font-family: myFirstFont;
}
</style>
</head>
<body>
<div>With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.</div>
<p><b class="harlow">Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
</html>

最佳答案

我做了如下改动,得到了结果

  • 字体系列的引号
  • 使用 URL 而不是本地
  • 将“\”改为“/”

注意:使用 local css 函数会在开发人员控制台中引发错误,指出资源未加载。请参阅下面修改后的代码。

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: "myFirstFont";
src: url("C:/Users/Desktop/Website/fonts/Harlow_Solid_Italic.ttf");
}

.harlow {
font-family: "myFirstFont";
}
</style>
</head>
<body>
<div>With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.</div>
<p><b class="harlow">Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
</html>

关于html - 使用字体在 HTML 中使用本地字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38086083/

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