TIL (Today I learned
TIL ----- 구글 폰트 가져오기
코딩준우
2023. 12. 28. 12:27
구글 폰트 링크
https://fonts.google.com/?subset=korean
Browse Fonts - Google Fonts
Making the web more beautiful, fast, and open through great typography
fonts.google.com
Language 설정으로 해당 언어의 폰트를 볼 수 있다.
원하는 폰트를 누른 후
1 . <style></style> 태그 안에 묶인 코드만을 복사해서 style 태그 안에 넣습니다.
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
2. css rules to specify families 탭의 코드를 복사한 후, 전체 적용 (*{ })을 css에 넣으면 됩니다.
* {
font-family: 'Noto Sans KR', sans-serif;
}