Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Tags
more
Archives
Today
Total
관리 메뉴

melius

[Style] 티스토리 폰트 변경 본문

et cetera

[Style] 티스토리 폰트 변경

melius102 2019. 12. 31. 13:53

웹폰트 링크로 폰트 변경

스킨 편집 > html 편집 > CSS에서 아래 코드 추가/수정

* url은 https로 시작해야함

 

1) 나눔고딕체

@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap');
body {font-family:'Nanum Gothic', sans-serif;}

 

2) 제주고딕체

@import url('https://fonts.googleapis.com/earlyaccess/jejugothic.css');
body {font-family:'Jeju Gothic', sans-serif;}

 

3) 고도체

@import url('https://cdn.rawgit.com/young-ha/webfont-archive/master/css/Godo.css');
body {font-family:'Godo', sans-serif;}

 

웹폰트 파일(woff)로 폰트 변경

스킨 편집 > html 편집 > 파일업로드에서 woff 파일 추가

* 추가하면 '/images/xxxx.woff'의 형태로 추가됨

 

스킨 편집 > html 편집 > CSS에서 아래 코드 추가/수정

@font-face {
	font-family: 'xxx';
	font-weight: xxx;
	src: url('./images/xxx.woff');
}

 

 

References

https://fonts.google.com/

https://googlefonts.github.io/korean/

http://youngkang.me/

http://youngkang.me/hangul-webfont-showcase/

https://noonnu.cc/

https://sheldon.co.kr/web_font_application/

 

'et cetera' 카테고리의 다른 글

[finance] 간접투자  (2) 2020.01.03
[finance] 재무제표  (0) 2019.12.31
[UI] Design Tool  (0) 2019.12.28
[Style] 티스토리 수식 작성  (0) 2019.12.27
[portfolio] web site  (2) 2019.12.26
Comments