일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 스와이퍼끝
- 슬라이드시작
- I’m an early
- Api Key 숨기기
- 슬라이드끝
- 중앙값 구하기
- swiper
- productive-box
- javascript
- todolist
- swiper-slide
- 최신 Yarn
- 코딩컨벤션
- 투두리스트
- 네이밍컨벤션
- exit code 128
- React
- 스와이퍼옵션
- 스와이퍼시작
- swiper적용
- 리액트
- github
- @include
- large files
- @mixin
- ttf to woff
- woff 변환
- 코드개선
- dotenv
- error
Archives
- Today
- Total
그래도 해야지. 어떡해
[폰트] TTF → WOFF로 변환하기 본문
⚠ 저작권 주의
공식사이트 라이선스를 보면서 웹폰트 변환이 가능한지 꼭 확인하자. TTF 파일을 구매했더라도 웹폰트 사용까지 허용한 것은 아니기 때문에 웹폰트로 무작정 변환해서 사용하면 절대 안된다.
TTF 파일은 용량이 크기 때문에 변환해서 사용하는 것을 권장한다.
웹폰트(WOFF, WOFF2, OTF)로 변환하기
사이트 접속 : https://convertio.co/kr/ttf-woff/
혹시 사이트가 사라져도 구글에 [ ttf to woff ] 라고 검색하면 비슷한 사이트들이 우수수 나온다.
TTF WOFF 변환 (온라인 무료) — Convertio
ttf 파일(들) 업로드 컴퓨터, Google Drive, Dropbox, URL에서 선택하거나 이 페이지에서 드래그하여 선택해 주세요.
convertio.co
웹폰트 코드 작성
/* suit */
@font-face {
font-family: "SUIT";
font-weight: 100;
src: url("./SUIT-Thin.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 200;
src: url("./SUIT-ExtraLight.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 300;
src: url("./SUIT-Light.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 400;
src: url("./SUIT-Regular.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 500;
src: url("./SUIT-Medium.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 600;
src: url("./SUIT-SemiBold.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 700;
src: url("./SUIT-Bold.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 800;
src: url("./SUIT-ExtraBold.woff2") format("woff2");
}
@font-face {
font-family: "SUIT";
font-weight: 900;
src: url("./SUIT-Heavy.woff2") format("woff2");
}
Comments