-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,32 @@ | ||
# 나눔바른고딕 경량화 웹폰트 | ||
|
||
> 모바일에 최적화된 정통 고딕 글꼴입니다. 글꼴이 가장 깨끗해 보이는 두께와 자간을 연구해 또렷하게 보이도록 만들었습니다. 돌출 형태나 곡선이 없어 작은 화면에서도 잘 읽힙니다. `https://hangeul.naver.com/2017/nanum` | ||
> 모바일에 최적화된 정통 고딕 글꼴입니다. 글꼴이 가장 깨끗해 보이는 두께와 자간을 연구해 또렷하게 보이도록 만들었습니다. 돌출 형태나 곡선이 없어 작은 화면에서도 잘 읽힙니다. | ||
`https://hangeul.naver.com/2017/nanum` | ||
|
||
바른고딕 웹 폰트를 사용하기 위해 한글 및 특수문자 3,705자만 추려 용량을 약 65% 축소하였습니다. | ||
|
||
## 옵션 | ||
|
||
Regular(400), Bold(700), Light(300), Ultra Light(200) 지원됩니다. | ||
|
||
## 사용방법 | ||
|
||
### link 방식 (권장) | ||
|
||
```html | ||
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/moonspam/NanumBarunGothic@1.0/nanumsquare.css"> | ||
``` | ||
|
||
### import 방식 | ||
|
||
```css | ||
@import url("https://cdn.jsdelivr.net/gh/moonspam/NanumBarunGothic@1.0/nanumsquare.css"); | ||
``` | ||
|
||
### 적용 | ||
|
||
#### css 예시 | ||
|
||
```css | ||
body { font-family: 'NanumBarunGothic', sans-serif; } | ||
``` |