我的意思是来自fontawesome的图标或来自Google字体的字体。在HTML中,我将这样的内容放在头部:
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
反应如何?
答案 0 :(得分:1)
您可以像这样将其导入样式表中
@import url('https://fonts.googleapis.com/css?family=Roboto');
您的身材将成为
body {
font-family: 'Roboto';
}
答案 1 :(得分:1)
在index.html中插入链接
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">