在网络上使用 Adob​​e 字体

发布于 2024-09-27 03:00:56 字数 72 浏览 2 评论 0原文

大家好,我有一个网站,我想在其上使用 Adob​​e 字体。有人可以帮忙吗???我得到的文件是 .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 技术交流群。

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

发布评论

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

评论(3

ぽ尐不点ル 2024-10-04 03:00:56

您可以在支持 @font-face。但是,请注意您的字体的许可。

上面链接中的示例:

@font-face 
{
    font-family: Delicious;
    src: url('Delicious-Roman.otf');
}

h3 { font-family: Delicious, sans-serif; }

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: Delicious;
    src: url('Delicious-Roman.otf');
}

h3 { font-family: Delicious, sans-serif; }
渔村楼浪 2024-10-04 03:00:56

@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

醉生梦死 2024-10-04 03:00:56

要嵌入字体,我推荐 Paul Irish 的 Bulletproof @font-face 语法

@font-face {
  font-family: 'adobe font web';
  src: url('adobefont.eot');
  src: local('?'),
         url('adobefont.otf') format('opentype');
}

我认为重要的是要注意 Adob​​e 字体已获得许可,因此您不能在网络上免费使用它们。如果您确实希望使用 Adob​​e 字体,我建议您在 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

@font-face {
  font-family: 'adobe font web';
  src: url('adobefont.eot');
  src: local('?'),
         url('adobefont.otf') format('opentype');
}

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

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