Skip to content

Instantly share code, notes, and snippets.

@ace4gi
Created July 15, 2014 01:12
Show Gist options
  • Select an option

  • Save ace4gi/e17606372925af0510b7 to your computer and use it in GitHub Desktop.

Select an option

Save ace4gi/e17606372925af0510b7 to your computer and use it in GitHub Desktop.
webFont.css (NanumGothic)
html - <head>
(function($){
var userAgent = navigator.userAgent.toLowerCase();
if( userAgent.indexOf('safari') != -1 && userAgent.indexOf('version') != -1 ){
// safari(중문표현 가능한 나눔고딕 폰트로 대체(.ttf, .otf)
document.write('<link href="${cp}/css/webFont.css" rel="stylesheet" type="text/css" />');
}else{
document.write('<style type="text/css">@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);</style>');
}
})();
webFont.css
@charset "utf-8";
@font-face{font-family:'Nanum Gothic'; src:url('/asan/css/fonts/NanumGothic.otf')}
@font-face{font-family:'Nanum Gothic'; src:url('/asan/css/fonts/NanumGothic.ttf')}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment