在 Windows 中使用 Lucida Grande

发布于 2024-10-06 02:27:46 字数 83 浏览 3 评论 0原文

我想在我的 Windows 网站中使用 Lucida Grande。

怎么办呢? 我怎样才能将它嵌入到我的网页中?

谢谢

I want to use Lucida Grande in my website for windows.

How to do that ?
how can i embed it to my webpage ?

Thanks

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

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

发布评论

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

评论(4

赠佳期 2024-10-13 02:27:46

我只是在寻找同样的东西并偶然发现了这篇文章:

http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/

它基本上建议使用 Lucida Sans Unicode 用于普通文本,Lucida Sans 用于粗体和斜体文本。

body {
    font-family: "Lucida Sans Unicode";
}
b, strong, i {
    font-family: "Lucida Sans";
}

链接站点中的完整代码示例(包括后备字体):

body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

strong, em, b, i {
    font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

I'm just looking for the same thing and stumbled upon this article:

http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/

It basically suggests to use Lucida Sans Unicode for normal text and Lucida Sans for bold and italic text.

body {
    font-family: "Lucida Sans Unicode";
}
b, strong, i {
    font-family: "Lucida Sans";
}

the complete code example (including fallback fonts) from the linked site:

body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

strong, em, b, i {
    font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
星光不落少年眉 2024-10-13 02:27:46

这是我过去使用过的字体堆栈:

font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;

This is the font-stack I've used in the past:

font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;

稍尽春風 2024-10-13 02:27:46

您可以尝试这样的操作:

<style type="text/css">
@font-face {
    font-family: "Lucida Grande";
    src: url(/resources/fonts/lucidagrande.ttf);
}
.ace {
    font-family: "Lucida Grande";
    font-size: 90%;
}
</style>

并且您应该调整 src: 行中使用的 url 以及 .ttf 文件在磁​​盘上的实际位置(取决于多个因素:您的文档根位置,或者您是否使用单独的服务器来存储静态资源等)。

You can try something like this:

<style type="text/css">
@font-face {
    font-family: "Lucida Grande";
    src: url(/resources/fonts/lucidagrande.ttf);
}
.ace {
    font-family: "Lucida Grande";
    font-size: 90%;
}
</style>

and you should adjust the url used in the src: line and the actual location on disk of the .ttf file (depends on multiple factors: your document root location, or if you use a separate server for static resources, etc).

情独悲 2024-10-13 02:27:46

您可以尝试将 Lucida Grande 添加到 font-family 标记,如下所示

element {
  font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
}

,并希望用户已安装 Lucida Grande 或从 W3C 读取此内容:http://www.w3.org/TR/css3-fonts/#font-family0 - 这里他们解释了如何嵌入字体(使用 CSS3)

You can try to add Lucida Grande to the font-family tag like this

element {
  font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
}

and hope that the user has Lucida Grande installed or read this from W3C: http://www.w3.org/TR/css3-fonts/#font-family0 - here they explain how to embed a font (with CSS3)

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