답변 2개
채택된 답변
+20 포인트
3년 전
그쵸 폰트페이스기때문에 폰트를 불러오는 역할을 합니다.
@font-face{ font-family: "폰트명" scr: url(font/NanumGothic.otf) format('truetype'); }
이런식으로 사용할 수도 있구요
굳이 폴더링을 따로 안하고 웹폰트를 불러오는 방식도 있습니다.
@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);
.nanumgothic * {
font-family: 'Nanum Gothic', sans-serif;
}
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
NanumGothic.ttf
NanumGothicBold.otf
NanumGothicBold.ttf
NanumGothicExtraBold.otf
NanumGothicExtraBold.ttf
NanumGothicLight.otf
NanumGothicLight.ttf
이렇게 받았져있습니다. 그럼 하나씩 추가 해주면 되나요??