FontBase

免费中文字体 · 跨域字体服务

-- GitHub

如何在外部网站中使用?

所有字体文件已开启 Access-Control-Allow-Origin: *, 直接在你的 CSS 中引用即可:

@font-face {
  font-family: '宋体';
  src: url('https://你的域名/fonts/song-ti.ttc') format('collection');
}

body {
  font-family: '宋体', sans-serif;
}