服务器上可以使用@font-face指定字体吗

发布于 2025-01-02 19:33:58 字数 214 浏览 0 评论 0原文

我使用 @font-face 指定用户用于个性化礼品网站上的产品的字体。但是,虽然我在服务器上有相关的 .ttf 文件,但它们无法安装。我需要在处理 asp 页面中引用/使用它们,但目前只能使用/工作服务器上安装的字体。

@font-face 可以在服务器上使用吗?我可以使用类似的命令吗?或者确实有另一种方法可以通过添加某种脚本来做到这一点?

I'm using @font-face to specify fonts to be used by the user to personalise products on a gift site. However, whilst I have the relevant .ttf files on the server they cannot be installed. I need to refer to/use them in a processing asp page but at present only the fonts installed on the server can be used/work.

Can the @font-face be used at the server? Is there a similar command I can use? Or indeed is there another way to do it by adding some sort of script?

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

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

发布评论

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

评论(1

心作怪 2025-01-09 19:33:58

要通过您的网站分发字体,您可能需要许可证

如果您有权在服务器上分发字体,则可以使用以下样式(不跨浏览器兼容)。

// To download the font
@font-face {
font-family: custom_font;
src: url('custom_font.ttf');
}

// To use the font
.custom_font{
font-family: custom_font;
}

或者,您可以使用在线字体 API(例如 google web fonts)来查找替代字体。

<html> 
<head>   
<link href='http://fonts.googleapis.com/css?family=Condiment' rel='stylesheet' type='text/css'>
<style>
    .custom_font { font-family: 'Condiment', cursive; }
</style>
</head> 
<body> 
<h2 class="custom_font">This is my custom font</h2>
</body> 
</html>

To distribute a font via your website you may need a license.

If you have the rights to distribute the font on your server you can use the following style (not cross browser compatible).

// To download the font
@font-face {
font-family: custom_font;
src: url('custom_font.ttf');
}

// To use the font
.custom_font{
font-family: custom_font;
}

Or you could use an online font api such as google web fonts to find a font alternative.

<html> 
<head>   
<link href='http://fonts.googleapis.com/css?family=Condiment' rel='stylesheet' type='text/css'>
<style>
    .custom_font { font-family: 'Condiment', cursive; }
</style>
</head> 
<body> 
<h2 class="custom_font">This is my custom font</h2>
</body> 
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文