JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 33
  • Score
    100M100P100Q78291F
  • License MIT

배달의민족 한나체 Air OTF typeface

Package Exports

  • @kfonts/bm-hanna-air-otf

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@kfonts/bm-hanna-air-otf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@kfonts/bm-hanna-air-otf

배달의민족 한나체 Air OTF 폰트를 self-host 하기 위한 webfont 파일과 css 파일

설치

$ npm install --save @kfonts/bm-hanna-air-otf

혹은

yarn add @kfonts/bm-hanna-air-otf

Self-Host 사용법

webpack을 통해 빌드되는 프로젝트에서 다음과 같은 형태로 사용 가능합니다.

require('@kfonts/bm-hanna-air-otf');

혹은

import '@kfonts/bm-hanna-air-otf';

그 후에 CSS 안에서 다음과 같이 사용 가능합니다.

body {
    font-family: '배달의민족 한나체 Air OTF', '배달의민족한나체AirOTF', 'bm-hanna-air-otf';
}

주의 ++++

css-loader 버전이 낮은 경우, 폰트명에 공백이 있으면 폰트 사용이 불가합니다. css-loader의 버전을 올리거나, 띄어쓰기가 없는 대체 폰트명을 사용해주세요.

Self-Host를 할 수 없는 경우의 사용법

다음의 HTML을 <head> 태그 내부에 삽입해주세요.

<link rel="stylesheet" href="https://unpkg.com/@kfonts/bm-hanna-air-otf/index.css" />