网页引入谷歌字体_在网页中使用Google字体

网页引入谷歌字体

Google Fonts is a service provided for free by Google that allows access to thousands of fonts. All the available fonts are under Open Source licenses, meaning they’re free to use for both commercial and non-commercial projects.

Google字体是Google免费提供的一项服务,可访问数千种字体。 所有可用字体均已获得开源许可,这意味着它们可免费用于商业和非商业项目。

入门 (Getting started)

This article will go over using Google Fonts on a webpage. Below is what a boilerplate web page looks like right now:

本文将介绍如何在网页上使用Google字体。 下面是样板网页的外观:

And here’s the boilerplate HTML markup:

这是样板HTML标记:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>My web page</title>
</head>
<body>
  <h1>Welcome to my website</h1>
</body>
</html>

Pretty boring, huh? Let’s spice it up a little with a better font.

太无聊了吧? 让我们用更好的字体给它加一点香料。

选择字体 (Choosing your fonts)

It’s now time for us to choose our fonts. Head on over to fonts.google.com and select a font you like by pressing the little (+) (plus) button. I’m going to use Karla. Once you’ve picked out your font, expand the drawer on the bottom of the page.

现在是时候选择字体了。 转到fonts.google.com,然后按小( + )(加号)按钮选择所需的字体。 我要用Karla 。 选择字体后,展开页面底部的抽屉。

There are two ways to import the font for use. For the first method, copy the code in the code box under the Standard label. Now head on over back to your markup and add a the copied code and a style tag to the head of the document like this.

有两种导入字体以供使用的方法。 对于第一种方法,将代码复制到“ Standard标签下的代码框中。 现在,回到您的标记上,然后将复制的代码和样式标签添加到文档的开头,如下所示。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>My web page</title>

  <link href="https://fonts.googleapis.com/css?family=Karla&display=swap" rel="stylesheet">
</head>
<body>
  <h1>Welcome to my website</h1>
</body>
</html>

You’ll notice from the URL example above that Google Fonts now supports the font-display property! 🎉

您将从上面的URL示例中注意到,Google字体现在支持 font-display属性 ! 🎉

If you already have a separate CSS stylesheet, copy the code under the @import label and add it to the top of your stylesheet like so.

如果您已经有一个单独CSS样式表,请复制@import标签下的代码,然后将其添加到样式表的顶部。

@import url('https://fonts.googleapis.com/css?family=Karla&display=swap');

.element {
  /* ... */
}

使用字体 (Using the Fonts)

We’ve imported our fonts, now it’s time to use them. Let’s set the body of our HTML markup to use Karla, like so:

我们已经导入了字体,现在是时候使用它们了。 让我们将HTML标记的body设置为使用Karla,如下所示:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>My web page</title>

  <link href="https://fonts.googleapis.com/css?family=Karla&display=swap" rel="stylesheet">

  <style>
      body {
        font-family: 'Karla', sans-serif;
      }
  </style>
</head>
<body>
  <h1>Welcome to my website</h1>
</body>
</html>

Now, if we take a look at our web page, it looks like this:

现在,如果我们看一下我们的网页,它看起来像这样:

That looks a lot better!

看起来好多了!

✨ That was easy, wasn’t it? Now you can make your web pages look prettier with the free font hosting offered by Google Fonts! Thanks for reading!

✨那很容易,不是吗? 现在,您可以使用Google字体提供的免费字体托管​​让网页看起来更漂亮! 谢谢阅读!

翻译自: https://www.digitalocean.com/community/tutorials/css-using-google-fonts

网页引入谷歌字体

参考资源链接:[梦源宋体-v3.00:前端字体开发的创新选择](https://wenku.csdn.net/doc/54u9rd3i7m?utm_source=wenku_answer2doc_content) 在网页设计引入梦源宋体字体并确保跨浏览器兼容性是一个涉及多方面技术细节的过程。首先,你需要获取梦源宋体的字体文件,通常这些文件会包括多种格式,以确保在不同操作系统和浏览器都能正常显示。例如,你可能需要.ttf (TrueType Font) 和 .otf (OpenType Font) 格式。 接着,通过CSS的@font-face规则,你可以定义字体并将其嵌入到网页。具体操作如下: ```css @font-face { font-family: '梦源宋体'; src: url('梦源宋体-v3.00.ttf') format('truetype'), url('梦源宋体-v3.00.otf') format('opentype'); } body { font-family: '梦源宋体', serif; } ``` 确保在CSS文件正确地引入字体文件,并且字体文件的路径正确无误。此外,为了提高兼容性,可以考虑使用第三方字体服务,如Google Fonts,这样可以利用服务提供商在不同浏览器的优化。 为了进一步确保字体在各种浏览器的兼容性,你可以测试在主流的浏览器(例如Chrome, Firefox, Safari, Edge和Internet Explorer)的显示效果。针对旧版本的Internet Explorer,可能需要额外的手段,比如使用EOT (Embedded OpenType) 格式或通过@font-face规则的特定语法。 在实践,你还需要确保字体的版权问题得到妥善处理,避免侵犯字体设计者的版权。 通过上述步骤,你可以在网页设计引入梦源宋体,并确保它在不同浏览器的兼容性,同时提供给用户一致且美观的视觉体验。 参考资源链接:[梦源宋体-v3.00:前端字体开发的创新选择](https://wenku.csdn.net/doc/54u9rd3i7m?utm_source=wenku_answer2doc_content)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值