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

CSS에서 글꼴 속성 사용


글꼴 속성은 글꼴 패밀리, 크기, 스타일 등과 같은 여러 다른 글꼴 속성을 지정하기 위해 약식으로 사용됩니다.

예시

다음 코드를 실행하여 글꼴 속성을 사용하는 방법을 배울 수 있습니다.

<html>
   <head>
   </head>
   <body>
      <p style = "font:italic small-caps bold 13px georgia;">
         Applying all the properties on the text at once.
      </p>
   </body>
</html>