CSS 谷歌字體

谷歌字體

如果您不想使用 HTML 中的任何標準字體,則可以使用 Google Fonts API 向頁面添加數百種其他字體。

只需添加一個樣式表鏈接并引用您選擇的字體系列:

實例

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
  font-family: "Sofia";
  font-size: 22px;
}
</style>
</head>
<body>
<h1>Sofia Font</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</body>
</html>

親自試一試