谷歌网络字体

发布于 2024-11-24 04:44:22 字数 299 浏览 2 评论 0原文

我计划在我的网站上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⊕婉儿 2024-12-01 04:44:22

是的,@import 中的 google 字体 - jsfiddle example

将其放在 CSS 文件的顶部

@import url('http://fonts.googleapis.com/css?family=Droid+Sans');

然后,像平常一样引用它

h1 { font-family: 'Droid Sans', arial, serif; font-size:24pt;}

Yep, @import the google font in - jsfiddle example

Put this at the top of your CSS file

@import url('http://fonts.googleapis.com/css?family=Droid+Sans');

Then, reference it like normal

h1 { font-family: 'Droid Sans', arial, serif; font-size:24pt;}
提赋 2024-12-01 04:44:22

添加标签,如何?请更好地解释一下自己。

在 HTML 中,您可以执行此操作...

<style type="text/css" media="screen">
  h1 { font-family: 'Droid Sans', arial, serif; }
</style>

如果这就是您所要求的?

Add the tags, how? Please explain yourself better.

In the HTML you can do this…

<style type="text/css" media="screen">
  h1 { font-family: 'Droid Sans', arial, serif; }
</style>

If that's what you're asking?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文