html – 将自定义字体添加到GitHub页面

我刚刚在 GitHub上托管了我的新网站.我在那里使用了一些自定义字体,我在index.html和style.css文件旁边上传了这些字体:

enter image description here

字体代码

@font-face {
  font-family: "gogoiadeco";
  src: url('gogoia-deco-webfont.eot');
  src: url('gogoia-deco-webfont.eot?#iefix') format('embedded-opentype'),url('gogoia-deco-webfont.woff') format('woff'),url('gogoia-deco-webfont.ttf') format('truetype'),url('gogoia-deco-webfont.svg#Gogoia') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'icomoon';
  src:url('icomoon.eot');
  src:url('icomoon.eot?#iefix') format('embedded-opentype'),url('icomoon.woff') format('woff'),url('icomoon.ttf') format('truetype'),url('icomoon.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gogoiaregular';
  src: url('gogoia-regular.eot');
  src: url('gogoia-regular.eot?#iefix') format('embedded-opentype'),url('gogoia-regular.woff2') format('woff2'),url('gogoia-regular.woff') format('woff'),url('gogoia-regular.ttf') format('truetype'),url('gogoia-regular.svg#gogoiaregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

我是GitHub的新手,我不知道要改变什么来使这些字体工作.

解决方法

我也有这个问题.我让字体在本地正常工作,但似乎无法在GitHub上正确使用它.

我想出了如何执行此操作:gitHub.io页面的根目录似乎与本地根目录不同,这导致错误文件夹中的字体.

这是我的代码

@font-face {
    font-family: F16;
    src: url("../SubSkipper/F16_Panel Font.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

SubSkipper是我的项目的名称,.ttf字体在明显的根目录中,我的意思是:“SubSkipper /”.

路径../返回一级,然后在本地显示项目的根目录(SubSkipper).

相关文章

vue阻止冒泡事件 阻止点击事件的执行 <div @click=&a...
尝试过使用网友说的API接口获取 找到的都是失效了 暂时就使用...
后台我拿的数据是这样的格式: [ {id:1 , parentId: 0, name:...
JAVA下载文件防重复点击,防止多次下载请求,Cookie方式快速简...
Mip是什么意思以及作用有哪些