[CSS] ๊ตฌ๊ธ€ ์›นํฐํŠธ ์‚ฌ์šฉํ•˜๊ธฐ

2021. 3. 31. 16:23

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

 

Google Fonts

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

fonts.google.com

1. ์œ„ ์‚ฌ์ดํŠธ์—์„œ ๋งˆ์Œ์— ๋“œ๋Š” ํฐํŠธ๋ฅผ ๊ณ ๋ฅธ๋‹ค.

 

2. ๋งˆ์Œ์— ๋“œ๋Š” ํฐํŠธ๋ฅผ ์„ ํƒํ•˜๊ณ  "+ Select this style"์„ ํด๋ฆญํ•œ๋‹ค.

 

3. <link>ํƒœ๊ทธ์˜ ๋‚ด์šฉ์„ ๋ณต์‚ฌํ•˜์—ฌ HTML <head> ์•ˆ์— ๋ถ™์—ฌ๋„ฃ๋Š”๋‹ค.

4. font-family๋ฅผ ๋ณต์‚ฌํ•˜์—ฌ HTML <head> ์•ˆ์— ์žˆ๋Š” <style>์ด๋‚˜ CSS์— ๋ถ™์—ฌ๋„ฃ๋Š”๋‹ค. 

 

<!-- HTML ํŒŒ์ผ -->

<head>
...
	<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding&display=swap" rel="stylesheet">
	<style>
    	* {
        	font-family: 'Nanum Gothic Coding', monospace;
          }
	</style>
...
</head>
/* CSS ํŒŒ์ผ */

*{
	font-family: 'Nanum Gothic Coding', monospace;
 }
728x90

BELATED ARTICLES

more