0
將Google字體添加到Drupal 8主題的正確方法是什麼?如何將Google字體添加到Drupal 8主題?
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
將Google字體添加到Drupal 8主題的正確方法是什麼?如何將Google字體添加到Drupal 8主題?
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
編輯THEME.libraries.yml
並添加它作爲「外部」型常規CSS文件:
global-styling:
css:
theme:
https://fonts.googleapis.com/css?family=Lato { type: external }
替代Maxim的回答,您可以添加通過庫一個CSS文件,並加載谷歌字體與@import方法。
@import url('https://fonts.googleapis.com/css?family=Bungee+Hairline');
答案很好,我在Lato後面加了'''':''以使它成爲關鍵:value compatibile – cssBlaster21895