Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

W3.CSS 谷歌字体

使用 W3.CSS 添加新字体非常容易。

  • 非常易于使用(只需 CSS 和 HTML)
  • 可以无限制使用外部字体库(如 Google 字体)
  • 适用于所有现代浏览器

这是 Roboto 字体

这是 Sofia 字体

Sofia 字体 on Fire

制作网页!

制作网页!

制作网页!

制作网页!

制作网页!


使用 Google 字体

Google 字体免费使用,有超过 1000 种字体可供选择。

在网页的头部链接到 Google 字体

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">

然后添加关于如何使用它的 CSS

body,h1,h2,h3,h4,h5,h6 {font-family: Roboto, sans-serif;}
尝试一下 »

另一个示例

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
body,h1,h2,h3,h4,h5,h6 {font-family: Sofia, serif;}
尝试一下 »

创建字体类

在网页的头部链接到 Google 字体

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">

然后创建一个字体类

示例

.w3-sofia {
  font-family: Sofia, cursive;
}

在您的网页中,使用字体类

示例

<p class="w3-sofia">制作网页!</p>
尝试一下 »
制作网页!

示例

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
.w3-tangerine {
  font-family: 'Tangerine', serif;
}
<p class="w3-tangerine">制作美丽的网页!</p>
尝试一下 »
制作网页!

示例

<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster">
尝试一下 »
制作网页!

示例

<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster&effect=shadow-multiple">
尝试一下 »
制作网页!

示例

<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Allerta+Stencil">
尝试一下 »
制作网页!


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.