@font-face : 폰트파일 사용하기



.woff : 익스플로어

.ttf, : 크롬, 파이어폭스, 사파리, 오페라



html)

font폴더에 .woff 폰트파일 과 .ttf 폰트파일 추가

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
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" 
          content="width=device-width, height=device-height, 
                     minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
    <title>Insert title here</title>
    <style>
    /* 
    @font-face {
        font-family : 폰트명;
        src : url(폰트경로);
    }
    */
    @font-face {
        font-family: 'Nanum Gothic';
        src: url(fonts/NanumGothic.woff) format("woff"),
             url(fonts/NanumGothic.ttf) format("truetype")
    }
    
    
    p {
        font-family: monospace;
        font-size: 1.3em;
        color: #0054FF;
    }
    p.nanum {
        font-family: "Nanum Gothic";
    }
    </style>
</head>
 
<body>
    <p class="nanum">나눔고딕 : 가나다라마바사아차자카타파하</p>
    <p>monospace : 가나다라마바사아차자카타파하</p>
</body>
</html>
cs



결과




+ Recent posts