主頁
CSS
CSS 字型
Google Fonts
Tryit:使用多個 Google 字型
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong"> <style> h1.a { font-family: "Audiowide", sans-serif; } h1.b { font-family: "Sofia", sans-serif; } h1.c { font-family: "Trirong", serif; } </style> </head> <body> <h1 class="a">Audiowide Font</h1> <h1 class="b">Sofia Font</h1> <h1 class="c">Trirong Font</h1> </body> </html>