"나눔글꼴 웹폰트 종결자"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 나눔고딕, 나눔바른고딕 웹폰트 설정 문서를 나눔글꼴 웹폰트 종결자 문서로 옮겼습니다)
잔글 ("나눔글꼴 웹폰트 종결자" 문서를 보호했습니다 ([편집=자동 인증된 사용자만 허용] (무기한) [이동=자동 인증된 사용자만 허용] (무기한)))
 
(사용자 5명의 중간 판 17개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
;나눔글꼴 웹폰트 종결자
;나눔글꼴 웹폰트 종결자
;나눔고딕, 나눔바른고딕 웹폰트 설정
;나눔고딕, 나눔바른고딕 웹폰트 적용
* link 또는 import 방식으로 구글과 jsdelivr의 웹폰트 CSS를 로딩 가능
* 아래 예시를 참고하되 페이지에 필요없는 폰트는 빼자.
: woff 파일을 내려받는 데 상당한 시간이 소요된다.


==link 방식==
==link 방식==
72번째 줄: 76번째 줄:


==같이 보기==
==같이 보기==
*[[나눔바른고딕 웹폰트]]
*[[나눔스퀘어 웹폰트]]
*[[나눔글꼴]]
*[[나눔글꼴]]
*[[웹폰트]]
*[[웹폰트]]


[[분류: CSS]]
[[분류: CSS]]
[[분류: 폰트]]
[[분류: 웹폰트]]
[[분류: 한글 폰트]]

2019년 6월 3일 (월) 10:25 기준 최신판

1 개요

나눔글꼴 웹폰트 종결자
나눔고딕, 나눔바른고딕 웹폰트 적용
  • link 또는 import 방식으로 구글과 jsdelivr의 웹폰트 CSS를 로딩 가능
  • 아래 예시를 참고하되 페이지에 필요없는 폰트는 빼자.
woff 파일을 내려받는 데 상당한 시간이 소요된다.

2 link 방식

<link rel="stylesheet" href="//fonts.googleapis.com/earlyaccess/nanumgothic.css">
<link rel="stylesheet" href="//fonts.googleapis.com/earlyaccess/nanumgothiccoding.css">
<link rel="stylesheet" href="//fonts.googleapis.com/earlyaccess/nanummyeongjo.css">
<link rel="stylesheet" href="//fonts.googleapis.com/earlyaccess/nanumbrushscript.css">
<link rel="stylesheet" href="//fonts.googleapis.com/earlyaccess/nanumpenscript.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/font-nanum/1.0/nanumbarungothic/nanumbarungothic.css">
<style>
div { float: left; }
.normal * { font-weight: normal; }
</style>

<div class='normal'>
	<h2>기본 글꼴</h2>
	<h2 style="font-family: 'Nanum Gothic';">나눔고딕</h2>
	<h2 style="font-family: 'Nanum Gothic Coding';">나눔고딕코딩</h2>
	<h2 style="font-family: 'Nanum Myeongjo';">나눔명조</h2>
	<h2 style="font-family: 'Nanum Brush Script';">나눔손글씨 붓체</h2>
	<h2 style="font-family: 'Nanum Pen Script';">나눔손글씨 펜체</h2>
	<h2 style="font-family: 'Nanum Barun Gothic';">나눔바른고딕</h2>
</div>
<div class='bold'>
	<h2>기본 글꼴</h2>
	<h2 style="font-family: 'Nanum Gothic';">나눔고딕</h2>
	<h2 style="font-family: 'Nanum Gothic Coding';">나눔고딕코딩</h2>
	<h2 style="font-family: 'Nanum Myeongjo';">나눔명조</h2>
	<h2 style="font-family: 'Nanum Brush Script';">나눔손글씨 붓체</h2>
	<h2 style="font-family: 'Nanum Pen Script';">나눔손글씨 펜체</h2>
	<h2 style="font-family: 'Nanum Barun Gothic';">나눔바른고딕</h2>
</div>

3 import 방식

<style>
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothiccoding.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanumbrushscript.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanumpenscript.css);
@import url(http://cdn.jsdelivr.net/font-nanum/1.0/nanumbarungothic/nanumbarungothic.css);

div { float: left; }
.normal * { font-weight: normal; }
</style>

<div class='normal'>
	<h2>기본 글꼴</h2>
	<h2 style="font-family: 'Nanum Gothic';">나눔고딕</h2>
	<h2 style="font-family: 'Nanum Gothic Coding';">나눔고딕코딩</h2>
	<h2 style="font-family: 'Nanum Myeongjo';">나눔명조</h2>
	<h2 style="font-family: 'Nanum Brush Script';">나눔손글씨 붓체</h2>
	<h2 style="font-family: 'Nanum Pen Script';">나눔손글씨 펜체</h2>
	<h2 style="font-family: 'Nanum Barun Gothic';">나눔바른고딕</h2>
</div>
<div class='bold'>
	<h2>기본 글꼴</h2>
	<h2 style="font-family: 'Nanum Gothic';">나눔고딕</h2>
	<h2 style="font-family: 'Nanum Gothic Coding';">나눔고딕코딩</h2>
	<h2 style="font-family: 'Nanum Myeongjo';">나눔명조</h2>
	<h2 style="font-family: 'Nanum Brush Script';">나눔손글씨 붓체</h2>
	<h2 style="font-family: 'Nanum Pen Script';">나눔손글씨 펜체</h2>
	<h2 style="font-family: 'Nanum Barun Gothic';">나눔바른고딕</h2>
</div>

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}