CSS 폰트

웹 폰트

서버에 저장된 서체를 사용자의 컴퓨터에서 사용할 수 있도록 한다.

적용 방식

  1. 웹 폰트 제공 서비스의 서버에서 그대로 가져와 사용한다.

  2. 서체를 자체 서버에 탑재하여 사용한다.

    body{
          padding: 8px 24px;
          font-size: 1.4rem;
    
          font-family: 'MyNotoSans', 'sans-serif';
        }
    
    @font-face {
      font-family: "MyNotoSans";
      src: url(./fonts/NotoSansKR-Regular.otf);
    }
    
    @font-face {
      font-family: "MyNotoSans";
      font-weight: 100;
      src: url(./fonts/NotoSansKR-Thin.otf);
    }
    
    @font-face {
      font-family: "MyNotoSans";
      font-weight: 300;
      src: url(./fonts/NotoSansKR-Light.otf);
    }
    
    @font-face {
      font-family: "MyNotoSans";
      font-weight: 500;
      src: url(./fonts/NotoSansKR-Medium.otf);
    }
    
    @font-face {
      font-family: "MyNotoSans";
      font-weight: 700;
      src: url(./fonts/NotoSansKR-Bold.otf);
    }
    
    @font-face {
      font-family: "MyNotoSans";
      font-weight: 900;
      src: url(./fonts/NotoSansKR-Black.otf);
    }