0

我必须从文件夹将字体加载到 css 中,但它不起作用

html

是 :

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <style>
        @font-face { font-family: 'HelveticaWorld'; font-style: normal; font-weight: bold; src: URL("../Fonts/HelveticaWorld-Bold.ttf") format('ttf'); }
    </style>
</head>
<body>
            <div style="margin-bottom: 15px; font-weight: bold;font-family: HelveticaWorld"">Setup</div>

</body>
</html>

下载物理 html 文件 (zip)

4

1 回答 1

1

查看 zip 文件,您的字体路径和格式错误。尝试:

@font-face { font-family: 'HelveticaWorld'; font-style: normal; font-weight: bold; src: URL("font/HelveticaWorld-Bold.ttf") format('truetype'); }
于 2013-02-04T15:32:12.850 回答