본문 바로가기

IT

css google 웹폰트 fonts 사용법 및 예제

 

css google 웹폰트 fonts 사용법

 

google fonts 페이지로 가서 "Ctrl + F"를 누른후 "나눔" 을 검색합니다.

http://www.google.com/fonts/earlyaccess

 

검색하면 다음과 같이 안내 문구가 나오고 적용 방법이 나온답니다.

 

참고로 나눔 폰트 종류가 1개가 아니기 때문에 잘 보고 이용하셔야 합니다.

 

 

 

Nanum Gothic (Korean)

The Nanum fonts (Korean : 나눔글꼴) are unicode fonts designed especially for the Korean-language script, designed by Sandoll Communications (Korean : 산돌 커뮤니케이션) and Fontrix (Korean : 폰트릭스). The publisher is Naver. Nanum Gothic is a contemporary sans-serif with a warm touch and is expertly hinted for screen use.

Link

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

Example

font-family: 'Nanum Gothic', serif;

 

 

 

실제 HTML 페이지  

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
 <HEAD>
  <TITLE> google fonts </TITLE>
  <style type="text/css">
 @import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);

 p { font-size: 20px; font-weight: bold; font-family: 'Nanum Gothic', serif; }
  </style>
 </HEAD>

 <BODY>
  <p> google 나눔고딕 구글 웹폰트 </p>
 </BODY>
</HTML>

 

실제 적용 화면

 

 

 

 

웹 폰트 적용시 로딩 속도가 살짝 생긴답니다.

그래서 사이트 내에서는 웹폰트 Download도 같이 지원하고 있답니다.

저의 경우 필요한 다운로드한후 필요한 webfont 만 import한 적도 있답니다. ㅎ