๐Ÿ‘ฉ๐Ÿป‍๐Ÿ’ป

[HTML/CSS] ์›นํŽ˜์ด์ง€์— ํฐํŠธ, ์•„์ด์ฝ˜ ์ถ”๊ฐ€ํ•˜๊ธฐ - ๊ตฌ๊ธ€ ํฐํŠธ(Google Fonts), Font Awesome ์‚ฌ์šฉ๋ฒ• ๋ณธ๋ฌธ

WEB/HTML & CSS

[HTML/CSS] ์›นํŽ˜์ด์ง€์— ํฐํŠธ, ์•„์ด์ฝ˜ ์ถ”๊ฐ€ํ•˜๊ธฐ - ๊ตฌ๊ธ€ ํฐํŠธ(Google Fonts), Font Awesome ์‚ฌ์šฉ๋ฒ•

tskyoi 2020. 7. 30. 10:04

Google Fonts ์‚ฌ์šฉ๋ฒ•

 

https://fonts.google.com/

 

Google Fonts

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

fonts.google.com

 

1. ํฐํŠธ ์„ ํƒ

Google Fonts์— ์ ‘์†ํ•œ ํ›„ ๊ฒ€์ƒ‰, ์ •๋ ฌ์„ ์ด์šฉํ•˜์—ฌ ์‚ฌ์šฉํ•  ํฐํŠธ๋ฅผ ์„ ํƒํ•ฉ๋‹ˆ๋‹ค.

 

 

2. ์›ํ•˜๋Š” ์Šคํƒ€์ผ ์„ ํƒ

์ œ๊ณต๋˜๋Š” ๋‹ค์–‘ํ•œ ์Šคํƒ€์ผ ์ค‘์—์„œ ์›ํ•˜๋Š” ์Šคํƒ€์ผ์„ ์™ผ์ชฝ Select this style์„ ํด๋ฆญํ•˜์—ฌ ์ถ”๊ฐ€ํ•ฉ๋‹ˆ๋‹ค.

 

 

3. ์ฝ”๋“œ ๋ณต์‚ฌ ๋ฐ ์ ์šฉ

์™ผ์ชฝ์— ํŒ์—…์ฐฝ์ด ๋œจ๋ฉด Embed๋ฅผ ํด๋ฆญํ•œ ํ›„ <link> ์•„๋ž˜์ชฝ์˜ ์ฝ”๋“œ๋ฅผ ๋ณต์‚ฌํ•ฉ๋‹ˆ๋‹ค. ํŒ์—…์ฐฝ์ด ๋œจ์ง€ ์•Š์„ ๊ฒฝ์šฐ ์˜ค๋ฅธ์ชฝ ์œ„ About ์˜†์˜ ์•„์ด์ฝ˜์„ ํด๋ฆญํ•˜๋ฉด ์ฐฝ์ด ๋‚˜ํƒ€๋‚ฉ๋‹ˆ๋‹ค.

 

<head>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap" rel="stylesheet">
</head>

HTML์˜ head์˜์—ญ์— ๋ณต์‚ฌํ•œ ์ฝ”๋“œ๋ฅผ ๋ถ™์—ฌ๋„ฃ๊ธฐ ํ•œ ํ›„, ๋‹ค์‹œ ํŒ์—…์ฐฝ์—์„œ CSS rules to specify families ์•„๋ž˜์ชฝ์˜ ์ฝ”๋“œ๋ฅผ ๋ณต์‚ฌํ•˜๊ณ 

<style>
body {
	font-family: 'Roboto', sans-serif;
}
</style>
body {
	font-family: 'Roboto', sans-serif;
}

HTML head ์˜์—ญ์˜ style ํƒœ๊ทธ ๋‚ด๋ถ€, ๋˜๋Š” CSS์—์„œ ํฐํŠธ๋ฅผ ์ ์šฉํ•˜๊ณ  ์‹ถ์€ ์˜์—ญ์— ์ถ”๊ฐ€ํ•ด์ฃผ๋ฉด ์›นํŽ˜์ด์ง€์— ํฐํŠธ๊ฐ€ ์ ์šฉ๋ฉ๋‹ˆ๋‹ค.

 


Font Awesome ์‚ฌ์šฉ๋ฒ•

 

https://fontawesome.com/

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

1. CDN ์ ์šฉ

Font Awesome ์‚ฌ์ดํŠธ์˜ ์ฒซ ํ™”๋ฉด์—์„œ Start for Free๋ฅผ ํด๋ฆญํ•˜๊ณ , ์ด๋ฉ”์ผ ์ฃผ์†Œ๋ฅผ ์ž‘์„ฑํ•ฉ๋‹ˆ๋‹ค. ๋ฉ”์ผ์˜ Confirm ๋ฒ„ํŠผ์„ ํด๋ฆญํ•˜๊ณ  ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์„ค์ •ํ•ด์ฃผ๋ฉด ์ฝ”๋“œ๊ฐ€ ์ƒ์„ฑ๋ฉ๋‹ˆ๋‹ค.

 

์ฝ”๋“œ ์šฐ์ธก์— ์žˆ๋Š” Copy Kit Code๋ฅผ ๋ˆŒ๋Ÿฌ ๋ณต์‚ฌํ•ด์ฃผ๊ณ  HTML์˜ head ์˜์—ญ์— ๋ถ™์—ฌ๋„ฃ์–ด ์ค๋‹ˆ๋‹ค.

<head>
<script src="https://kit.fontawesome.com/d5bfc6e03c.js" crossorigin="anonymous"></script>
</head>

 

2. ์•„์ด์ฝ˜ ์ ์šฉ

Icons ๋ฉ”๋‰ด๋ฅผ ํด๋ฆญํ•˜๋ฉด ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ์•„์ด์ฝ˜์˜ ๋ชฉ๋ก์ด ๋‚˜ํƒ€๋‚ฉ๋‹ˆ๋‹ค. ํšŒ์ƒ‰์œผ๋กœ ํ‘œ์‹œ๋œ ์•„์ด์ฝ˜์€ Pro License๋ฅผ ๊ฐ€์ง„ ์‚ฌ์šฉ์ž๋งŒ ์ด์šฉํ•  ์ˆ˜ ์žˆ์ง€๋งŒ, ๋ฌด๋ฃŒ ๋ฒ„์ „์œผ๋กœ๋„ ์•„์ฃผ ๋งŽ์€ ์•„์ด์ฝ˜์„ ์ด์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

 

์›ํ•˜๋Š” ์•„์ด์ฝ˜์„ ์„ ํƒํ•œ ํ›„, Copy HTML ์œ„์น˜์— ์žˆ๋Š” ์ฝ”๋“œ๋ฅผ ํด๋ฆญํ•˜๋ฉด ์ž๋™์œผ๋กœ ๋ณต์‚ฌ๋ฉ๋‹ˆ๋‹ค. ๋ณต์‚ฌ๋œ ์ฝ”๋“œ๋ฅผ HTML์— ์•„์ด์ฝ˜์„ ์ ์šฉํ•˜๊ณ  ์‹ถ์€ ์œ„์น˜์— ๋ถ™์—ฌ๋„ฃ์œผ๋ฉด ์•„์ด์ฝ˜์ด ์ ์šฉ๋˜๋Š” ๊ฒƒ์„ ๋ณผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

<div>
<i class="fab fa-android"></i>Android
</div>

Font Awesome์˜ ์•„์ด์ฝ˜๋“ค์€ ํฐํŠธ์ด๊ธฐ ๋•Œ๋ฌธ์— HTML์˜ Font-style, CSS๋ฅผ ์ ์šฉ์‹œ์ผœ ์•„์ด์ฝ˜์˜ ํฌ๊ธฐ, ์ƒ‰์ƒ์„ ๋ฐ”๊พธ๊ฑฐ๋‚˜ ํšŒ์ „์‹œํ‚ค๊ณ  ์ค‘์ฒฉ์‹œํ‚ฌ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

์ž์„ธํ•œ ์‚ฌ์šฉ๋ฒ•์€ ์•„๋ž˜์˜ ๋งํฌ๋ฅผ ์ฐธ์กฐํ•˜์‹œ๊ธธ ๋ฐ”๋ž๋‹ˆ๋‹ค.

 

1) ํฌ๊ธฐ ๋ณ€๊ฒฝ

https://fontawesome.com/how-to-use/on-the-web/styling/sizing-icons

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

2) ์ƒ‰์ƒ ๋ณ€๊ฒฝ

https://fontawesome.com/how-to-use/on-the-web/styling/sizing-icons

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

3) ํšŒ์ „

https://fontawesome.com/how-to-use/on-the-web/styling/rotating-icons

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

4) ์ค‘์ฒฉ

https://fontawesome.com/how-to-use/on-the-web/styling/stacking-icons

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

 

 

- 2020/07/30 ์ˆ˜์ •

Comments