CSS 한글 폰트 선택하기 - 노토산스, NotoSansKR
웹화면에 한글을 위해 폰트선택은 필수!
- 아래 글을 참고하세요.
- [CSS]웹 폰트 적용하는 방법, 나눔고딕 웹에 적용
실제 적용 CSS
<link href="//fonts.googleapis.com/earlyaccess/hanna.css" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/earlyaccess/nanumgothic.css" rel="stylesheet" type="text/css">
<style type="text/css">
@font-face {
font-family: "NotoSansKR";
src: url("/fonts/NotoSans-Regular.woff") format("woff");
font-style: normal;
}
@font-face {
font-family: "NotoSansKR";
src: url("/fonts/OpenSans-Regular.woff") format("woff");
unicode-range: U+0020-007E;
font-style: normal;
}
body {
font-family: "NotoSansKR","Novacento Sans Wide", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
//background: lightcyan;
//font-size: 30px;
}
h1 {
//font-family: 'Nanum Barun Gothic';
font-family: "hanna","NotoSansKR","Novacento Sans Wide", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
text-transform: none;
//font-weight: bold;
}
h2, h3, h4, h5, h6 {
font-family: "NotoSansKR","Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
text-rendering: optimizeLegibility;
color: #5e5e5e;
font-weight: 400;
letter-spacing: -1px;
}
</style>
바꾼 사이트의 폰트는 짜잔.
'IT > Web' 카테고리의 다른 글
깃헙페이지 호스팅 제한사항 - GitHub Pages limits (0) | 2020.03.02 |
---|---|
CSS 지식 - em과 rem의 차이 (0) | 2020.02.27 |
기술 자료나 위키 문서를 외부에 공개할 때 사용할 문서 플랫폼 (0) | 2020.02.06 |
무료 도메인 메일 서비스 - 러시아 Yandex 메일 커스텀 도메인 추가하기 (1) | 2020.01.28 |
인터넷 보안 - 기업의 보안 담당자를 위한 로그설정 노트 (0) | 2019.12.27 |