본문 바로가기
컴퓨터관련/Tip&Tech

CSS를 위한 구글 온라인 폰트

by 강릉바다의 블로그 2025. 1. 14.

https://fonts.google.com/?lang=ko_Kore&script=Kore

 

Browse Fonts - Google Fonts

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

fonts.google.com

 

 

※ 적용 방법(link 방식)

<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=Noto+Sans+KR:wght@100..900&display=swap" rel="stylesheet">
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

 

※ 적용 방법(@import 방식)

<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
</style>
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

'컴퓨터관련 > Tip&Tech' 카테고리의 다른 글

PPT를 1920*1080 이미지로 내보내기  (0) 2024.12.15
The Best AI Chatbots for 2024  (1) 2024.11.05
Monica  (0) 2024.10.24
삼성 스마트기기 펌웨어 작업 순서  (1) 2024.10.15
Vegas pro 랜러링 멈춤  (0) 2024.10.11