在 Windows 中使用 Lucida Grande
我想在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我只是在寻找同样的东西并偶然发现了这篇文章:
http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/
它基本上建议使用
Lucida Sans Unicode 用于普通文本,
Lucida Sans
用于粗体和斜体文本。链接站点中的完整代码示例(包括后备字体):
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 andLucida Sans
for bold and italic text.the complete code example (including fallback fonts) from the linked site:
这是我过去使用过的字体堆栈:
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;
您可以尝试这样的操作:
并且您应该调整
src:
行中使用的 url 以及.ttf
文件在磁盘上的实际位置(取决于多个因素:您的文档根位置,或者您是否使用单独的服务器来存储静态资源等)。You can try something like this:
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).您可以尝试将 Lucida Grande 添加到
font-family
标记,如下所示,并希望用户已安装 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 thisand 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)