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

CSS로 글꼴 모음 설정

<시간/>

font-family 속성은 글꼴의 면을 변경하는 데 사용됩니다. 가능한 값은 글꼴 패밀리 이름일 수 있습니다.

<html>
   <head>
   </head>
   <body>
      <p style = "font-family:georgia,garamond,serif;">
         This text is rendered in either georgia, garamond, or the default serif font
         depending on which font you have at your system.
      </p>
   </body>
</html>