我正在使用@font-face
来指定用户用来个性化礼品网站上的产品的字体。但是,虽然我在服务器上有相关的.ttf文件,但是无法安装。我需要在处理asp页面中引用/使用它们,但目前只有服务器上安装的字体可以使用/工作。
可以在服务器上使用@font-face
吗?我可以使用类似的命令吗?或者确实有另一种方法可以通过添加某种脚本来实现它吗?
答案 0 :(得分:0)
要通过您的网站分发字体,您可能需要license。
如果您有权在服务器上分发字体,则可以使用以下样式(不兼容跨浏览器)。
// 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>