폰트 변환
폰트 변환이 필요하다.
만약, ttf 파일만 갖고있다면 해당 파일을 아래 사이트에 업로드 후 eot, woff2, woff 등으로 변환한다.
https://convertio.co/kr/otf-ttf/
변환 후 다운로드 시 파일명에 prefix가 붙으므로 파일이름 변경하는거 잊지말기
변환 후 홈페이지 서버에 변환한 파일들을 적절한 경로에 업로드 후 아래 css 작성
css 작업
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
@font-face {
font-family: 'nt-b';
src: url('../fonts/Noto/notokr-bold.eot');
src: url('../fonts/Noto/notokr-bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Noto/notokr-bold.woff2') format('woff2'),
url('../fonts/Noto/notokr-bold.woff') format('woff'),
url('../fonts/Noto/notokr-bold.ttf') format('truetype'),
url('../fonts/Noto/notokr-bold.svg#notokr-bold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'nt-m';
src: url('../fonts/Noto/notokr-medium.eot');
src: url('../fonts/Noto/notokr-medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Noto/notokr-medium.woff2') format('woff2'),
url('../fonts/Noto/notokr-medium.woff') format('woff'),
url('../fonts/Noto/notokr-medium.ttf') format('truetype'),
url('../fonts/Noto/notokr-medium.svg#notokr-medium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'nt-r';
src: url('../fonts/Noto/notokr-regular.eot');
src: url('../fonts/Noto/notokr-regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/Noto/notokr-regular.woff2') format('woff2'),
url('../fonts/Noto/notokr-regular.woff') format('woff'),
url('../fonts/Noto/notokr-regular.ttf') format('truetype'),
url('../fonts/Noto/notokr-regular.svg#notokr-regular') format('svg');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'nt-l';
src: url('../fonts/Noto/notokr-regular.eot');
src: url('../fonts/Noto/notokr-regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/Noto/notokr-regular.woff2') format('woff2'),
url('../fonts/Noto/notokr-regular.woff') format('woff'),
url('../fonts/Noto/notokr-regular.ttf') format('truetype'),
url('../fonts/Noto/notokr-regular.svg#notokr-regular') format('svg');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'nt-d';
src: url('../fonts/Noto/notokr-demilight.eot');
src: url('../fonts/Noto/notokr-demilight.eot?#iefix') format('embedded-opentype'),
url('../fonts/Noto/notokr-demilight.woff2') format('woff2'),
url('../fonts/Noto/notokr-demilight.woff') format('woff'),
url('../fonts/Noto/notokr-demilight.ttf') format('truetype'),
url('../fonts/Noto/notokr-demilight.svg#notokr-demilight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'nt-t';
src: url('../fonts/Noto/notokr-thin.eot');
src: url('../fonts/Noto/notokr-thin.eot?#iefix') format('embedded-opentype'),
url('../fonts/Noto/notokr-thin.woff2') format('woff2'),
url('../fonts/Noto/notokr-thin.woff') format('woff'),
url('../fonts/Noto/notokr-thin.ttf') format('truetype'),
url('../fonts/Noto/notokr-thin.svg#notokr-thin') format('svg');
font-weight: normal;
font-style: normal;
}
|
cs |
css 및 폰트 파일 서버에 업로드 후 브라우저에서 강력새로고침 해서 확인하기
'개발 > CSS' 카테고리의 다른 글
CSS) background 색상, 이미지 동시에 나오게 하기 (0) | 2022.04.03 |
---|---|
CSS) 말줄임표 표시 (ellipsis, ellip) (0) | 2022.04.01 |
CSS) div 가로 세로 중앙정렬 (0) | 2022.04.01 |