Unable to retrieve font: @font-face { font-family: "SourceHanSansCN-Regular" src: url("/SourceHanSansCN-Regular.otf") format("opentype") font-style: normal font-weight: normal }报错
时间: 2024-03-03 16:52:51 浏览: 131
wedding-website:@abisummers和我的婚礼的网站
你这段代码中缺少了分号和大括号,应该改为如下代码:
```
@font-face {
font-family: "SourceHanSansCN-Regular";
src: url("/SourceHanSansCN-Regular.otf") format("opentype");
font-style: normal;
font-weight: normal;
}
```
请注意,在使用 `@font-face` 规则时,需要指定字体的格式、字体的粗细和样式等信息,这些信息可以帮助浏览器更好地加载和识别字体。同时,你需要确保字体文件的路径是正确的,否则会出现无法获取字体的错误。
阅读全文