티스토리 뷰

웹상에 무료폰트 사용 시 


연동하는방법이 몇가지 있다.


IIS서버에서 폰트 사용시 mime type를 추가해주지 않으면 경로가 맞아도 인식을 하지 않는다.



@font-face{
font-family:"Nanum Gothic";
src:url('/fonts/NanumGothic.eot');
src:url('/fonts/NanumGothic.eot?#iefix') format('embedded-opentype'),
url('/fonts/NanumGothic.woff') format('woff'),
url('/fonts/NanumGothic.ttf') format('truetype');
url('/fonts/NanumGothic.svg#NanumGothic') format('svg')
src:local(), url('/fonts/NanumGothic.woff') format('woff');
}


IIS 설정에서 HTTP헤더탭에 mime형식을 아래와 같이 추가해줘야 사용가능


font/ttf .ttf
font/eot .eot
font/otf .otf
font/woff .woff


댓글