โ font-family ๋ ํฐํธ ์คํ์ผ
์ ์ง์ ํ๋ ์์ฑ
#title {
font-family: Georgia, "Times New Roman", Times, serif;
}
Georgia, "Times New Roman", Times, serif ๋ผ๋ ๊ฐ์ ํด์ํด๋ณด์๋ฉด,
๋ธ๋ผ์ฐ์ ๊ฐ Georgia ๋ผ๋ ํฐํธ๋ฅผ ์ง์ํด์ฃผ๋ฉด Georgia ํฐํธ๋ก ์ ์ฉ
Georgia ํฐํธ๊ฐ ์ง์๋์ง ์์ผ๋ฉด, "Times New Roman"์ ์ ์ฉ,
์ด๊ฒ๋ ์ง์๋์ง ์์ผ๋ฉด Times์ ์ ์ฉ
์์ ์ธ ๊ฐ์ง ํฐํธ๊ฐ ์ ๋ถ ์์ผ๋ฉด serif๋ผ๋ ํฐํธ๋ฅผ ์ฌ์ฉํ๊ฒ ๋ค๋ ๋ป์
๋๋ค.
์ฃผ์) "Times New Roman"๋ง ""(์๋ฐ์ดํ)๋ก ๊ฐ์ธ์ ธ ์๋๋ฐ, ํฐํธ ์ด๋ฆ์ ๋์์ฐ๊ธฐ๊ฐ ๋์ด์์ผ๋ฉด ""(์๋ฐ์ดํ)๋ฅผ ์ฌ์ฉํด์ผํฉ๋๋ค.
font-style ์ ์ด์ฉํ์ฌ ๊ธ์จ ์คํ์ผ์ ๋ฐ๊ฟ ์ ์๋ค.
italic์ด๋ผ๋ ๊ฐ์ ์ง์ ํ๋ฉด ์ดํค๋ฆญ์ฒด๋ก ๋ณํ๊ฒ ๋๋ค.
a {
font-style: italic;
}
font-size ๋ ํฐํธ์ ํฌ๊ธฐ๋ฅผ ์ง์ ํด์ค๋ค.
.size{
font-size : 15px;
}
ํฐํธ ํฌ๊ธฐ ๋จ์๋ 'px', 'em', 'pt'๋ฑ ์ฌ๋ฌ๊ฐ์ง๊ฐ ์๋ค.
font-weight ๋ ๊ธ์จ ๋๊ป๋ฅผ ์กฐ์ ํด์ฃผ๋ property
.bold-font {
font-weight: bold;
}
font-weight ๋ ๊ธ์จ ๋๊ป๋ฅผ ์กฐ์ ํ๋ property์
๋๋ค.
normal, bold, 100, 200, ... 900 ๋ฑ์ ๊ฐ์ด ์ง์ ๋ ์ ์์ต๋๋ค.
์ซ์ 400๊ณผ normal์ ๊ฐ์ ๋๊ป
์ซ์ 700๊ณผ bold๋ ๊ฐ์ ๋๊ป
๋ณดํต์ ๋๊ป๊ฑฐ๋ or ์๋๊ฑฐ๋ ๋๊ฐ์ง ๊ฒฝ์ฐ๋ฉด ๋๋ฏ๋ก ๊ฐํธํ๊ฒ bold ๊ฐ์ ์ง์ ํ๋ค.
๊ธ์จ ์์ ํํํ๋ property
.pink {
color: pink;
}
.yellow {
color: yellow;
}
๐ต ์์์ ํํํ๋ ๋ฐฉ๋ฒ
hex ์์์ฝ๋: ์ฌ์ฏ์๋ฆฌ๋ก ํํ -
#eb4639
rgb ๊ฐ: ๋นจ๊ฐ, ์ด๋ก, ํ๋์ผ๋ก ํํ -
rgb(235, 70, 57)
hsl : ์์, ์ฑ๋, ๋ช ๋(hue, saturation, lightness)๋ก ํํ -
hsl(4, 82%, 57%)
(์ธ๊ฐ์ง๋ ๋ชจ๋ ๊ฐ์ ์)
h1 {
color: #eb4639;
}
h1 {
color: rgb(235, 70, 57);
}
h1 {
color: hsl(4, 82%, 57%);
}
๋ง์ฝ hex ํํ์์ rgb ํํ์ผ๋ก ๋ฐ๊พธ๊ณ ์ถ๋ค๋ฉด google์ "color hex to rgb"๋ผ๋ ํค์๋๋ก
๊ฒ์ํด์ ์ฐพ์๋ณด์.