Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS에서 문서에 사용할 글꼴 설명

<시간/>

글꼴을 설명하려면 @font-face 규칙을 사용하십시오. 다음 코드를 실행하여 글꼴을 설정할 수 있습니다 -

예시

<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>