답변 4개
채택된 답변
+20 포인트
7년 전
저도 이런경우가 워낙 많아서..
/fonts 폴더 만들어서 업로드 후 css 에서 import 해서 쓰는 방법으로
하고 있습니다.
도움 되는 댓글이 아니라 죄송합니다. ㅠㅠ
로그인 후 평가할 수 있습니다
답변에 대한 댓글 1개
w
wwmk
7년 전
댓글을 작성하려면 로그인이 필요합니다.
7년 전
설마,, 그 안나오는 분 컴퓨터에 맑은고딕 폰트가 없을리가요? ㅎㅎㅎ
맑은고딕은 기본서체 아니였던가요 -_-;;
MalgunGothic 으로 한번 바꿔보세요~
위 소스는 사실 FOUT 증상을 없애기 위한,, 폰트로더 이긴한데,
도움되시길 바라며 올린거긴합니다 ㅠ
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
7년 전
많이 쓰는 Noto Sans 라면..
</p>
<p><script src="//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Noto Sans KR']
}
});
</script></p>
<p>
적용한번 해보세요!
로그인 후 평가할 수 있습니다
답변에 대한 댓글 1개
w
wwmk
7년 전
맑은고딕쓰고있는데 맑은고딕으로만 바꿔주면될까요??
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
@import url("http://fonts.googleapis.com/earlyaccess/nanumgothic.css");
@import url("http://fonts.googleapis.com/earlyaccess/malgungothic.css");
@import url("http://fonts.googleapis.com/earlyaccess/nanummyeongjo.css");
@font-face {
font-family:MalgunGothic_eot;
src:url('/fonts/MalgunGothic.eot');
}
@font-face {
font-family:MalgunGothic_ttf;
src:url('/fonts/MalgunGothic.ttf');
}
@font-face {
font-family:NanumGothic.eot;
src:url('/fonts/NanumGothic.eot');
}
@font-face {
font-family:NanumGothic.woff;
src:url('/fonts/NanumGothic.woff');
}
@font-face {
font-family:NanumGothicBold.woff;
src:url('/fonts/NanumGothicBold.woff');
}
말씀하신방법이 혹시 이거인가요??