font-face 방식으로 폰트이름을 하나로 하고 여러개의 스타일을 표현하기
@font-face{
font-family: NanumGothic;
src:url(../fonts/NaumGothicL.woff) format('woff');
font-weight:300;
}
@font-face{
font-family: NanumGothic;
src:url(../fonts/NaumGothicR.woff) format('woff');
font-weight:400;
}
@font-face{
font-family: NanumGothic;
src:url(../fonts/NaumGothicB.woff) format('woff');
font-weight:700;
}
@font-face{
font-family: NanumGothic;
src:url(../fonts/NaumGothicEB.woff) format('woff');
font-weight:800;
}
*{
font-family: "NanumGothic", sans-serif;
}
.title{
font-weight:800;
}
.txt{
font-weight:500;
}