在网络上使用 Adobe 字体
大家好,我有一个网站,我想在其上使用 Adobe 字体。有人可以帮忙吗???我得到的文件是 .otf
非常感谢
Hey everyone, I have a website that i want to use Adobe fonts on it. can anyone please help with it ??? the files i got are .otf
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在支持 @font-face。但是,请注意您的字体的许可。
上面链接中的示例:
You can use OTF fonts in browsers that supports @font-face. Be aware of the licensing of your font, however.
Example from the link above:
@font-face { font-family:美味; src: url('Delicious-Roman.otf'); }
@font-face { font-family: 美味;字体粗细:粗体; src: url('Delicious-Bold.otf'); }
h3 { 字体系列:美味,无衬线; 我用它
来使用点阵字体此处
@font-face { font-family: Delicious; src: url('Delicious-Roman.otf'); }
@font-face { font-family: Delicious; font-weight: bold; src: url('Delicious-Bold.otf'); }
h3 { font-family: Delicious, sans-serif; }
I use it to use dot-matrix fonts here
要嵌入字体,我推荐 Paul Irish 的 Bulletproof @font-face 语法
我认为重要的是要注意 Adobe 字体已获得许可,因此您不能在网络上免费使用它们。如果您确实希望使用 Adobe 字体,我建议您在 http://typekit.com/ 获取一个帐户或寻求免费替代方案 http://www.theleagueofmoveabletype.com/ 或 http://code.google.com/webfonts
To embed a font I would recommend Paul Irish's Bulletproof @font-face syntax
I think that it is important to note that Adobe fonts are under licence so you can't just use them for free on the web. If you do wish to use Adobe fonts I would recommend getting an account at http://typekit.com/ or seek a free alternative http://www.theleagueofmoveabletype.com/ or http://code.google.com/webfonts