ARBONNE 文本的 CSS 样式

发布于 2024-09-19 20:51:51 字数 69 浏览 5 评论 0 原文

我正在为一位朋友制作一个网站,他希望文本字体为 AR BONNIE。有谁知道这个的CSS吗?我似乎无法在任何地方找到该字体。

I'm making a website for a friend and he wants the text font to be AR BONNIE. Does anyone know the CSS for this? I can't seem to find the font anywhere.

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

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

发布评论

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

评论(6

梦明 2024-09-26 20:51:51

转到此站点:onlinefontconverter 并创建 woff、eot、svg 和 ttf 文件
并将其放入 css 中

@font-face {
    font-family: 'ARBONNIE';
    src: url('ar-bonnie.eot');
    src: local('☺'),
         url('ar-bonnie.woff') format('woff'), 
         url('ar-bonnie.ttf') format('truetype'), 
         url('ar-bonnie.svg#ARBONNIE') format('svg');
    font-weight: normal;
    font-style: normal;
}

,您可以设置 p { font-family: 'ARBONNIE'; }

Go to this site: onlinefontconverter and create woff, eot, svg and ttf files
and put this in css

@font-face {
    font-family: 'ARBONNIE';
    src: url('ar-bonnie.eot');
    src: local('☺'),
         url('ar-bonnie.woff') format('woff'), 
         url('ar-bonnie.ttf') format('truetype'), 
         url('ar-bonnie.svg#ARBONNIE') format('svg');
    font-weight: normal;
    font-style: normal;
}

and you can set p { font-family: 'ARBONNIE'; }

邮友 2024-09-26 20:51:51

AR BONNIE 不是有效的网络字体。(请参阅 http://web.mit.edu/ jmorzins/www/fonts.html

有不同类型的解决方案。

  • 使用 javascript:sifrcufon字体

  • 使用 css3 - < a href="http://www.css3.info/preview/web-fonts-with-font-face/" rel="nofollow noreferrer">@font-face(并非所有浏览器都支持)< /p>

始终检查该字体对于您的项目是否合法。最终用户许可协议权利...

AR BONNIE is not een valid webfont.(see http://web.mit.edu/jmorzins/www/fonts.html)

There are different types of solutions.

Always check if the font is legal for your project. EULA rights...

梦里南柯 2024-09-26 20:51:51

Dafont 的 Andes 非常接近:

但由于它不是网络字体,因此您必须专门嵌入。

您还可以查看

http://code.google.com/webfonts

其 Google 网络字体,你可以在css中使用。

http://www.dafont.com/search.php?psize= m&q=安第斯山脉

Andes, from Dafont, is pretty close:

But since its not web font , you have to embed exclusively.

You can also take a look at

http://code.google.com/webfonts

its google web font , you can use in css.

http://www.dafont.com/search.php?psize=m&q=andes

你没皮卡萌 2024-09-26 20:51:51

如果您想在 CSS 中使用某种字体,则必须确保所有访问者都安装了该字体,或者 在网址中提供它,或将其显示为位图或通过 Flash。

If you want to use a font in CSS, you must make sure that all of your visitors have that font installed, or provide it in an url, or display it as a bitmap or via flash.

药祭#氼 2024-09-26 20:51:51

一个不错的选择是使用 typeface.js。我自己没有在我的任何网站中使用过它,但我喜欢这个概念以及他们提供的示例。

A great option is using typeface.js. I've not used it myself in any of my sites, but I loved the concept, and the examples they've provided.

淡墨 2024-09-26 20:51:51

AR BONNIE 是 Ascender“Plaza”字体的复制版本,后来以 AR BONNIE 的名称转售。

单击此处获取 Plaza 字体。

AR BONNIE is a replicated version of the Ascender "Plaza" font which was then resold as AR BONNIE.

Click here for the Plaza font.

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