在我的网站中使用 BinnerD 字体

发布于 2024-09-07 04:50:42 字数 84 浏览 2 评论 0原文

可以在网站中使用 BinnerD 字体吗?我尝试在 css、html 中使用它,但没有成功。

网络字体有限制吗?

谢谢!!

Is possible to use the font BinnerD in a website ? I tryed to use it in css,html but no luck.

Fonts for the web are limited?

Thanks!!

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

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

发布评论

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

评论(2

此生挚爱伱 2024-09-14 04:50:42

简单的回答,

除非用户已经安装了字体,否则在 CSS 文件的 font-family 属性中您可以并且应该指定多种字体。 Web 浏览器将浏览此列表并选择用户安装的第一个字体。例如,

font-family:Arial,Liberation Sans,DejaVu Sans,sans-serif;

如果未找到,将首先使用 Arial;如果未找到,将使用 Liberation Sans;如果未找到,将使用 DejaVu Sans;如果未找到,将使用 sans-serif。

更复杂的答案
越来越多的浏览器开始启用可下载字体,您可以在其中指定浏览器可以下载您想要使用的字体的位置,例如,

@font-face {
  font-family: "Kimberley";
  src: url(http://www.princexml.com/fonts/larabie/ »
  kimberle.ttf) format("truetype");
}
h1 { font-family: "Kimberley", sans-serif }

但是要以这种方式分发字体,您需要从其生产商处获得字体许可。它通常是用于制作印刷作品或图像以及分发字体本身的不同许可证。此外,浏览器支持还远未普及。

编辑:一个很好的关于WebFonts的参考即可下载字体http://webfonts.info

Simple answer,

Not unless the user already has the font installed, in the font-family attribute of the CSS file you can and should specify multiple fonts. The web browser will look through this list and pick the first font that the user has installed. e.g.

font-family:Arial,Liberation Sans,DejaVu Sans,sans-serif;

will first use Arial if not found it will use Liberation Sans if not found will use DejaVu Sans and if not found will use sans-serif.

More Complex answer
More browsers are starting to enable downloadable fonts where you specify where the browser can download the font you want it to use e.g.

@font-face {
  font-family: "Kimberley";
  src: url(http://www.princexml.com/fonts/larabie/ »
  kimberle.ttf) format("truetype");
}
h1 { font-family: "Kimberley", sans-serif }

However to distribute fonts in this manner you need to licence the font from its producer. It is usally a different licence for producing print work or images and distibuting the font itself. Also browser support is far from universal.

EDIT: A good reference on WebFonts i.e. downloadable fonts http://webfonts.info

抹茶夏天i‖ 2024-09-14 04:50:42

可能的?大概。只需将其转换为网络字体并将其上传到您的服务器,以便您可以通过 CSS 中的 URL 访问它。

合法的?可能不会。字体受版权保护并获得许可。为了避免混乱,在尝试类似的事情之前检查一下你可以做什么。

其他选项:检查 Google 提供的免费字体或商业Typekit

Possible? Probably. Just convert it to a web font and upload it to your server so you can access it with a URL from your CSS.

Legal? Probably not. Fonts are copyrighted and licensed. To avoid hazzle, check what you're allowed to do before trying something like that.

Other options: Check the free fonts from Google or the commercial Typekit.

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