티스토리 뷰
웹상에 무료폰트 사용 시
연동하는방법이 몇가지 있다.
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
'serverSide > windows' 카테고리의 다른 글
SERVER2012 에 MSE 설치 (0) | 2018.10.23 |
---|---|
[IIS] 가상 디렉토리 스크립트 권한 삭제 (0) | 2018.08.18 |
사라진 창 이동 시키기 (0) | 2018.08.14 |
[server2008r2] iis7 http to https (0) | 2018.03.19 |
[IIS6] XLSX 파일 다운로드 설정 (0) | 2015.06.10 |
댓글