coding/CSS

구글 웹폰트

JIN_Coder 2022. 4. 26. 19:28

2022.04.26

 

구글 웹폰트 사용법

 

https://fonts.google.com/?subset=korean

 

Google Fonts

Making the web more beautiful, fast, and open through great typography

fonts.google.com

사이트에서 원하는 폰트 클릭

 

오른쪽 중앙 Select this style 누르면 장바구니(?) 같은 곳에 들어감

맨위 오른쪽 Hide selected family 누르면 오른쪽 에 내가 선택한 폰트들이 나옴

 

<!-- HTML에 이 부분을 추가하고 -->
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap" rel="stylesheet">
/* CSS에 이 부분을 추가하면 완성! */
* {
	font-family: 'Nanum Gothic', sans-serif;
}

 

'coding > CSS' 카테고리의 다른 글

배경 이미지 넣기 공식  (0) 2022.04.26
css 중앙 정렬  (0) 2022.04.26
부트스트랩 사용법 2  (0) 2022.04.26
부트스트랩 사용법  (0) 2022.04.26