부트스트렙 이용해서 만든 홈페이지..
관련링크
본문
폰트를 좀 바꾸고 싶은데 어떻게 바꿔야 하는지 좀 알수 있을까요???
답변 2
나눔고딕 웹폰트 소스 올려드릴께요.
공통적으로 들어가는 파일
예) 그누보드는 head.php 파일
에 넣으시면 됩니다.
WebFontConfig = {
custom: {
families: ['Nanum Gothic'],
urls: ['http://fonts.googleapis.com/earlyaccess/nanumgothic.css']
}
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1.4.10/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
답변을 작성하시기 전에 로그인 해주세요.