font-family는 웹 페이지에서 텍스트 글꼴을 원하는 글꼴로 나오도록 함
글꼴을 지정하는 방법은 3가지
① 시스템에 설치되어 있는 기본 글꼴을 사용
② @font-face를 이용하여 웹폰트를 import 한 후에 사용
③ 직접 다운을 받거나 작업한 폰트를 @font-face로 설정한 후에 사용
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
<style>
1
body
{
font-family : "나눔명조","궁서","바탕" ;
font-weight : bold ;
}
2
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100&display=swap') ;
.notoSansKR
{
margin-top : 10px ;
font-family : 'Noto Sans KR' ;
}
3
@font-face
{
font-family : customFont ;
src:url("Chango-Regular.ttf");
}
.keyStyleFont
{
margin-top : 10px ;
font-family : customFont ;
}
</style>
</head>
<body>
1번 적용
<div>
body에 해당하는 나눔명조를 적용
</div>
2번 적용
<div class = "notoSansKR" >
Noto Sans KR을 적용
</div>
3번 적용
<div class = "keyStyleFont" >
직접 로컬에 있는 파일을 불러와서 Chango 글꼴 적용
</div>
</body>
</html>
|
[css3] font-weight - 글자 굵기 지정 (0) | 2021.03.23 |
---|---|
[css3] font-size - 글자 크기 조절 (0) | 2021.03.22 |
[css3] prefixfree.min.js - 브라우저 접두사 편하게 사용 (0) | 2021.03.18 |
[css3] !important - 높은 우선 순위 스타일 적용 (0) | 2021.03.17 |
[css3] ID 선택자 - 한번만 스타일 적용 (0) | 2021.03.16 |