谷歌网络字体
我计划在我的网站上使用 Google 网络字体。
我的网站有很多页面,但只有几个 CSS 文件。
-=> 有什么方法可以在CSS文件中添加这个标签(因为我不想编辑所有的HTML文件)?
<link href=' http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
或者我是否需要在每个 HTML 页面的 head 部分添加以上行?
I'm planning to use Google web fonts on my site.
My site has lots of pages, but only a few CSS files.
-=> Is there any way to add this tag in the CSS file (because I don't want to edit all the HTML files)?
<link href=' http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
or do I need to add the above line in every HTML page's head section?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,@import 中的 google 字体 - jsfiddle example
将其放在 CSS 文件的顶部
然后,像平常一样引用它
Yep, @import the google font in - jsfiddle example
Put this at the top of your CSS file
Then, reference it like normal
添加标签,如何?请更好地解释一下自己。
在 HTML 中,您可以执行此操作...
如果这就是您所要求的?
Add the tags, how? Please explain yourself better.
In the HTML you can do this…
If that's what you're asking?