프리랜서 웹디자이너 웹퍼블리셔RELATION

RELATION 로고

홈페이지 소스

[CSS] Google Fonts : Early Access Preview

2015.11.13
북마크 작성자 정보
국문체
-나눔체 : @import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);


@import url("http://fonts.googleapis.com/earlyaccess/notosanskr.css");
font-family: 'Noto Sans KR', sans-serif;


@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanssc.css);

/* 한국어 */
:lang(ko) {
font-family: 'Noto Sans KR', sans-serif;
}
/* 일본어 */
:lang(ja) {
font-family: 'Noto Sans JP', sans-serif;
}
/* 중국어 (간체) */
:lang(zh-Hans) {
font-family: 'Noto Sans SC', sans-serif;
}
... 생략 ...
<body>
.... 생략 ....
<div lang="ko"> ... 한국어 콘텐츠</div>
<div lang="ja"> ... 일본어 콘텐츠</div>
<div lang="zh-Hans"> ... 중국어 간체 콘텐츠</div>

관련 URL
https://www.google.com/fonts/earlyaccess
http://www.google.com/get/noto/#/
http://deminoth.github.io/google-font-kor/



이 포스트 공유하기

전체목록