CSS 字体回退


目录

    显示目录


常用字体后备

以下是一些常用的后备字体,按 5 个通用字体系列组织:

Serif
Sans-serif
Monospace
Cursive
Fantasy
  • 衬线

  • 无衬线字体

  • 等宽字体

  • 草书

  • 奇幻


衬线字体

font-family Example text
"Times New Roman", Times, serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Times New Roman", Times, serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Georgia, serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Georgia, serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Garamond, serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Garamond, serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


无衬线字体

font-family Example text
Arial, Helvetica, sans-serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Tahoma, Verdana, sans-serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Tahoma, Verdana, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
"Trebuchet MS", Helvetica, sans-serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Geneva, Verdana, sans-serif

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Geneva, Verdana, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>




等宽字体

font-family Example text
"Courier New", Courier, monospace

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Courier New", Courier, monospace;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


草书字体

font-family Example text
"Brush Script MT", cursive

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Brush Script MT", cursive;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


幻想字体

font-family Example text
Copperplate, Papyrus, fantasy

This is a Heading

This is a paragraph.

尝试一下

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Copperplate, Papyrus, fantasy;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


提示:另请查看所有可用的 Google 字体以及如何使用它们。