在 CSS 中使用自定义 (ttf) 字体

发布于 2024-12-06 10:34:17 字数 171 浏览 0 评论 0原文

我有一台 Mac,并安装了一种名为“7 Segment”的字体(它显示在字体簿中)。当我使用 font-family: "7 Segment"; 我得到 Helvetica (或类似字体)而不是浏览器的默认字体,但它仍然没有显示正确的字体。该页面只需在此计算机上显示。我将如何使用此页面上的字体?谢谢。

I have a mac, and have installed a font called "7 Segment" (it shows up in Font Book). When I use font-family: "7 Segment"; I get Helvetica (or similar) rather than the browser's default font, but it still isn't showing the correct font. The page only needs to be shown on this computer. How would I use the font on this page? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海风掠过北极光 2024-12-13 10:34:18

您需要使用 css-property font-face 来声明您的字体。看看这个精美的网站: http://www.font-face.com/

示例:

@font-face {
  font-family: MyHelvetica;
  src: local("Helvetica Neue Bold"),
       local("HelveticaNeue-Bold"),
       url(MgOpenModernaBold.ttf);
  font-weight: bold;
}

另请参阅:MDN @font-face

You need to use the css-property font-face to declare your font. Have a look at this fancy site: http://www.font-face.com/

Example:

@font-face {
  font-family: MyHelvetica;
  src: local("Helvetica Neue Bold"),
       local("HelveticaNeue-Bold"),
       url(MgOpenModernaBold.ttf);
  font-weight: bold;
}

See also: MDN @font-face

2024-12-13 10:34:18

这不是系统字体。其他系统不支持此字体。您可以使用font-face,从此网站 或来自

在此处输入图像描述

This is not a system font. this font is not supported in other systems. you can use font-face, convert font from this Site or from this

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文