我想在我的.aspx中嵌入我自己的字体,但google chrome和firefox不支持该字体,而IE支持该字体。让我知道如何在asp.net页面中嵌入字体。
我的代码是,
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Font</title>
<style type="text/css">
.title
{
@font-face
{
font-family: Mullai;
src: url('F:\ASP\SAMP - Mullai.ttf')format("truetype");
}
}
</style>
</head>
</body>
<form id="form1" runat="server">
<div>
<table style="width: 100%;">
<tr>
<td style="width: 91px"> </td>
<td align="center" style="width: 351px" class="title">தமிழ்<br /></td>
<td style="width: 91px"> </td>
</tr>
</table>
</div>
</form>
</body>
</html>
chrome和firefox不会调用css类。让我知道它的问题是什么。提前致谢
答案 0 :(得分:0)
之前我遇到过类似问题,可能来自配置文件。