Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
出于安全原因,浏览器阻止了任何外部不安全链接。就我而言,我的网站无法加载某些 Google 字体。
你们能建议如何从我的磁电机主题内部加载任何自定义字体吗?
谢谢
您可以像这样从 http 和 https 加载谷歌字体
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
否则下载字体并像这样使用它们
@font-face { font-family: 'Open Sans', sans-serif; src: url("../fonts/OpenSans-Regular.ttf"); }