melius
[Style] 티스토리 폰트 변경 본문
웹폰트 링크로 폰트 변경
스킨 편집 > 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://googlefonts.github.io/korean/
http://youngkang.me/hangul-webfont-showcase/
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