在 html5 中,我使用了自定义字体(Universe 55 字体)。我下载了 .ttf 文件,与@font-face 规则一起使用,并在 IE、Chrome、移动浏览器中进行了检查。它不起作用,但在网站上他们说浏览器将支持这种字体类型。我需要为字体使用任何其他文件格式吗?
我使用@font-face 规则作为,
@font-face
{ font-family: 'Universe2';
src: url("C:\Users\..\Desktop\Fonts\Univers LT 55 Roman.ttf"); }
.custfont
{ font-family: 'Universe2';
font-size:25px; }
<body><div class='custfont'>This is a customized font</div></body>