CSS에 글꼴을 새로 다운 받지 않고도, 구글 폰트를 이용해 웹상의 폰트를 적용시킬 수 있다.
폰트 찾기는 https://fonts.google.com 에서!
한글 폰트의 경우는 https://fonts.google.com/earlyaccess 에서 Korean 검색!
html 파일에서 link 하는 ccs 파일에 아래와 같이 글꼴을 import 하여 사용하면 된다.
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
font-family: 'Roboto Condensed', sans-serif;
사용법을 잘 모르겠는 경우 구글 폰트에서 선택하면 사용법 예시까지 알려준다.
'Programming > CSS' 카테고리의 다른 글
CSS 간단 메뉴얼 (0) | 2017.12.15 |
---|