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

问题描述 投票:5回答:2

我刚刚在GitHub上托管了我的新网站。我在那里使用了一些自定义字体,我在index.htmlstyle.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的新手,我不知道要改变什么来使这些字体工作。

html css github fonts github-pages
2个回答
4
投票

我也有这个问题。我让字体在本地正常工作,但似乎无法在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)。


0
投票

当仅使用markdown作为索引或README.md作为索引时,样式表文件位于https://you.github.io/assets/css/style.cssThis是使用Cayman主题的wooden-utensil,如果你想添加自定义css,我想你可以添加到该文件,只需保留现有代码,因为那时Cayman或其他主题将无效。无论如何我想只是添加

body {
    font-family: etc;
}
© www.soinside.com 2019 - 2024. All rights reserved.