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

Mô tả một mặt phông chữ để sử dụng trong tài liệu trong CSS

Để mô tả mặt phông chữ, hãy sử dụng quy tắc @ font-face. Bạn có thể thử chạy đoạn mã sau để đặt phông chữ -

Ví dụ

<style>
   <!--
      @font-face {
         font-family: "Scarborough Light";
         src: url("https://www.font.site/s/scarbo-lt");
      }

      @font-face {
         font-family: Santiago;
         src: local ("Santiago"),
         url("https://www.font.site/s/santiago.tt")
         format("truetype");
         unicode-range: U+??,U+100-220;
         font-size: all;
         font-family: sans-serif;
      }
   -->
</style>