상세 컨텐츠

본문 제목

웹폰트 적용하기

CSS

by 김일국 2015. 7. 30. 14:26

본문

아래 사이트에서 Droid_Robot.otf 폰트 파일을 웹폰트로 변환 할 수 있습니다.

http://www.fontsquirrel.com/tools/webfont-generator


/* 로컬 웹폰트 적용 */

@font-face {

    font-family: 'droid_robotregular';

    src: url('/home/css/droid_robot-webfont.eot');

    src: url('/home/css/droid_robot-webfont.eot?#iefix') format('embedded-opentype'),

         url('/home/css/droid_robot-webfont.woff2') format('woff2'),

         url('/home/css/droid_robot-webfont.woff') format('woff'),

         url('/home/css/droid_robot-webfont.ttf') format('truetype'),

         url('/home/css/droid_robot-webfont.svg#droid_robotregular') format('svg');

    font-weight: normal;

    font-style: normal;


}

@import url("http://fonts.googleapis.com/earlyaccess/nanumgothic.css" );/*나눔 웹폰트적용*/

body,li,p,select,input,option,button,h1,h2,h3,h4,h5,h6,a,td,textarea,.c1 { font-family:"Nanum Gothic" !important; font-size:10pt; color:#222222;}

관련글 더보기

댓글 영역