프로그래밍
2011/02/11 15:07
사용자 폰트 적용하기 (css)
* 웹사이트에 폰트 적용하기 위해서 폰트 로드한 후 적용
<style type="text/css">
@font-face {
font-family: Apres Regular;
font-style: normal;
font-weight: normal;
src: url(../font/apres-regular.otf) !important;
}
#content {
font-family:'Apres Regular', verdana, arial, helvetica, sans-serif;
font-size:24px;
color:#535353;
text-decoration:none;
}
</style>

