PHP 自定义字体与 asp.net mvc

发布于 2024-12-11 08:40:09 字数 302 浏览 0 评论 0原文

我有兴趣使用 apache/nginx 将自定义字体添加到 php 网站。 我希望浏览器支持 IE7+、Safari、Chrome、Mozilla、Opera。

通常,我在带有 IIS 6 的 Windows 服务器上使用 ASP.NET MVC。在那里,我只需在服务器上安装字体文件,这又可以让我使用:

font-family: 'custom-font';

并且这适用于任何浏览器(至少是较新的版本)在任何客户端计算机上。

有人可以解释一下这在 php/apache 上是如何工作的吗?

I am interested in adding a custom font to a php website using an apache/nginx.
I would like to have browser support for IE7+, Safari, Chrome, Mozilla, Opera.

Normally, I work with ASP.NET MVC on a Windows Server with IIS 6. There, I just have to install the font file on the server which in turn lets me use:

font-family: 'custom-font';

and this works in any browser (at least the newer versions) on any client machine.

Can someone explain how does this work on php/apache?

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

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

发布评论

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

评论(2

自由如风 2024-12-18 08:40:09

Fontsquirrel 拥有多种可供下载的免版税、开源和类似许可的字体,以及CSS 字体套件生成器,它允许您上传 TTF 或 OTF 格式的字体文件,选择几个选项,它会生成一个 zip 文件,其中包含样式表和一堆字体文件,您可以将其简单地放入您的网站中项目的css 目录。将字体样式表导入到主样式表中,然后就可以开始了。或者使用提供的样式表作为您自己的样式表的基础。

Fontsquirrel has a wide selection of royalty-free, open-source and similarly licensed fonts ready for download, as well as a CSS font kit generator, which allows you to upload a font file in TTF or OTF format, select a few options, and it will spit out a zip file containing a stylesheet and a bunch of font files that you can simply drop in your web project's css directory. Import the font stylesheet into your main stylesheet, and you're ready to go. Or use the provided stylesheet as a basis for your own.

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