무료 웹폰트 추천 적용 방법

교교 2014.06.03 16:16:35

css 파일에다 설정하는

@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);

 

방법보다

<head> ~~~ </head> 에 link를 이용하여 웹폰트를 적용하는 것을 권장합니다

 

<html>

<head>

<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/earlyaccess/nanumgothic.css">
<style>
body {  
 font-family: 'Nanum Gothic', sans-serif;
        font-size: 13x;
      }
</style>

</head>
<body>
<h4> 나눔고딕</h4>
<p> 무료 웹폰트 추천 적용 방법</p>
</body>
</html>