【发布时间】:2022-09-24 05:27:26
【问题描述】:
我正在开发一个带有 Django 的项目,但我遇到了字体问题。我可以在电脑上看到上传的字体,但在手机上看不到。
这是我的文件路径:
static
|
interface
|
main.css
folsom-black.otf
这是我的 html 文件的代码:
<style>
@font-face {
font-family: \'Folsom\';
src:
url(\"{% static \'interface/folsom-black.otf\' %} format(\'otf\')\");
}
</style>
这是我的 css 文件的代码:
@font-face {
font-family: \'Folsom\';
src:
url(\'../interface/folsom-black.otf\') format(\'otf\');
}
标签: python html css django django-staticfiles