HOME
물생활
일상생활
개발

개발/CSS

CSS) 폰트 css 지정하기

듀비양 2022. 4. 1. 16:28

폰트 변환이 필요하다.

만약, ttf 파일만 갖고있다면 해당 파일을 아래 사이트에 업로드 후 eot, woff2, woff 등으로 변환한다.

https://convertio.co/kr/otf-ttf/

 

OTF TTF 변환 (온라인 무료) — Convertio

otf 파일(들) 업로드 컴퓨터, Google Drive, Dropbox, URL에서 선택하거나 이 페이지에서 드래그하여 선택해 주세요.

convertio.co

변환 후 다운로드 시 파일명에 prefix가 붙으므로 파일이름 변경하는거 잊지말기

변환 후 홈페이지 서버에 변환한 파일들을 적절한 경로에 업로드 후 아래 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

 

1
<div style="font-family:'nt-L';"></div>
cs

 

css 및 폰트 파일 서버에 업로드 후 브라우저에서 강력새로고침 해서 확인하기