Computer >> Máy Tính >  >> Lập trình >> CSS

Cách sử dụng Phông chữ Google trên trang web của bạn?


Để sử dụng Phông chữ Google trên trang web của bạn, mã như sau -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap" rel="stylesheet"/>
<style>
   body {
      font-family: "Permanent Marker", cursive;
      font-size: 22px;
   }
</style>
</head>
<body>
<h1>Google fonts example</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Debitis non a quos repudiandae doloribus cumque! Ex rem rerum aut maiores.
</p>
<h2>1 2 3 4 5 6 7 8 9 10</h2>
</body>
</html>

Đầu ra

Đoạn mã trên sẽ tạo ra kết quả sau -

Cách sử dụng Phông chữ Google trên trang web của bạn?