正如其他答案所指出的,Segoe UI 不可在非 Microsoft 或其代理制作的 Web 应用程序中使用。不过,为了回答您的问题的标题,我想指出 Microsoft 本身通过 @font-face 在其 Web 应用程序中使用 Segoe UI,例如,来自 Microsoft Surface 2 CSS:
As the other answers note, Segoe UI is not available for use in web apps not made by Microsoft or their agents. To answer the title of your question, however, I'd like to point out that Microsoft themselves use Segoe UI in their web apps via @font-face, eg, from the Microsoft Surface 2 CSS:
如果没有直接联系,您无法从 Microsoft 获得 Segoe UI 许可,您可以从 Ascender Corp 获得单色字体许可,该字体从 Microsoft Segoe UI 网页链接到,但它与 Segoe UI 不同。
我建议 Open Sans 作为 Segoe UI 字体的替代品,它非常相似,并且有更多的开放许可用作网络字体(该链接实际上是 Google 托管的字体版本) - 所以你可以将 Segoe 作为主要字体字体然后在非 Windows 7+ 系统上回退到 Open Sans。
You can't license Segoe UI from Microsoft without direct contact, you can license the mono font from Ascender Corp who are linked to from Microsoft webpage for Segoe UI, however it is not the same as Segoe UI.
I would suggest Open Sans as an alternative to the Segoe UI font, it is quite similar and has much more open licensing for using as webfont (that link is actually to Google's hosted version of the font) - So you could have Segoe as the main font then fall back to Open Sans on non Windows 7+ Systems.
You can technically create a web font using any font in your "C:\Windows\Fonts\" folder.
In most circumstances (including Segoe UI), you aren't allowed to do this due to licensing restrictions. Instead, I would recommend Open Sans as a good alternative to Segoe UI.
However, if you are allowed to do this, you can follow these steps:
Retrieve your font from your "C:\Windows\Fonts\" folder. (Windows)
Convert the font into any other formats that you desire for compatibility (TTF, EOT, SVG, WOFF)
Now in your main CSS file, use the "font-family" tag to select your web font.
I will state again the importance of having a valid license for the web font, when purchasing a license make sure that you have the rights to use the font on the web. Some fonts may come with a web font package with the CSS and fonts already prepared for you.
与该页面上的字体不一样。该页面上的字体是 Segoe UI Mono。据我所知,Segoe UI 应该只出现在 Microsoft Windows 上。
It's not the same font on that page. The font on that page is Segoe UI Mono. As far as I know, Segoe UI is supposed to appear only on Microsoft Windows.
发布评论
评论(4)
正如其他答案所指出的,Segoe UI 不可在非 Microsoft 或其代理制作的 Web 应用程序中使用。不过,为了回答您的问题的标题,我想指出 Microsoft 本身通过 @font-face 在其 Web 应用程序中使用 Segoe UI,例如,来自 Microsoft Surface 2 CSS:
甚至像 Metro UI - 看起来与 Windows 8 完全相同 - 使用 OpenSans:
我推荐 OpenSans。
As the other answers note, Segoe UI is not available for use in web apps not made by Microsoft or their agents. To answer the title of your question, however, I'd like to point out that Microsoft themselves use Segoe UI in their web apps via @font-face, eg, from the Microsoft Surface 2 CSS:
Even projects like Metro UI - that look exactly like Windows 8 - use OpenSans:
I would recommend OpenSans.
如果没有直接联系,您无法从 Microsoft 获得 Segoe UI 许可,您可以从 Ascender Corp 获得单色字体许可,该字体从 Microsoft Segoe UI 网页链接到,但它与 Segoe UI 不同。
我建议 Open Sans 作为 Segoe UI 字体的替代品,它非常相似,并且有更多的开放许可用作网络字体(该链接实际上是 Google 托管的字体版本) - 所以你可以将 Segoe 作为主要字体字体然后在非 Windows 7+ 系统上回退到 Open Sans。
You can't license Segoe UI from Microsoft without direct contact, you can license the mono font from Ascender Corp who are linked to from Microsoft webpage for Segoe UI, however it is not the same as Segoe UI.
I would suggest Open Sans as an alternative to the Segoe UI font, it is quite similar and has much more open licensing for using as webfont (that link is actually to Google's hosted version of the font) - So you could have Segoe as the main font then fall back to Open Sans on non Windows 7+ Systems.
从技术上讲,您可以使用“C:\Windows\Fonts\”文件夹中的任何字体创建网络字体。
在大多数情况下(包括 Segoe UI),由于许可限制,您不能执行此操作。相反,我会推荐 Open Sans 作为 Segoe UI 的良好替代方案。
但是,如果允许您这样做,您可以按照以下步骤操作:
创建一个包含以下代码的 CSS 文件:
<前><代码>@font-face{
字体系列:'字体名称';
src: url('路径/to/webfont.eot');
src: url('路径/to/webfont.woff'),
url('路径/到/webfont.ttf'),
url('路径/到/webfont.svg')
}
我将再次声明拥有有效的网络字体许可证的重要性,购买许可证时确保您有权在网络上使用该字体。某些字体可能附带网络字体包,其中包含已为您准备好的 CSS 和字体。
You can technically create a web font using any font in your "C:\Windows\Fonts\" folder.
In most circumstances (including Segoe UI), you aren't allowed to do this due to licensing restrictions. Instead, I would recommend Open Sans as a good alternative to Segoe UI.
However, if you are allowed to do this, you can follow these steps:
Create a CSS file with the following code in it:
Now in your main CSS file, use the "font-family" tag to select your web font.
I will state again the importance of having a valid license for the web font, when purchasing a license make sure that you have the rights to use the font on the web. Some fonts may come with a web font package with the CSS and fonts already prepared for you.
与该页面上的字体不一样。该页面上的字体是 Segoe UI Mono。据我所知,Segoe UI 应该只出现在 Microsoft Windows 上。
It's not the same font on that page. The font on that page is Segoe UI Mono. As far as I know, Segoe UI is supposed to appear only on Microsoft Windows.