본문 바로가기
CSS

42dot Sans 한글 폰트 웹에서 적용하기

by 영감은어디에 2025. 4. 15.

https://fonts.google.com/specimen/42dot+Sans

 

42dot Sans - Google Fonts

 

fonts.google.com

이렇게 한글폰트 만들어 무료로 배포하는 개인과 기업들 대단함.. 

 

웹에서 사용하기

head 안에 복붙 

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=42dot+Sans:wght@300..800&display=swap" rel="stylesheet">

 

css 에 복붙 

* {
  font-family: "42dot Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

 

'CSS' 카테고리의 다른 글

:is(), :where()  (0) 2025.04.15
css 3d, transform-style: preserve-3d  (0) 2025.03.07
round tab, css  (0) 2025.03.03
filter: drop-shadow  (0) 2024.10.18
mouse move  (0) 2024.10.17
나눔스퀘어 네오 폰트, 웹폰트로 사용법  (0) 2024.10.01
배경 그라디언트 애니메이션  (0) 2024.10.01
li 점 색상 바꾸기 CSS  (0) 2024.09.02