• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>CSS Fonts</title>
7
    <style>
8
        .normal { font-variant: normal; }
9
        .smallCaps { font-variant: small-caps; }
10
    </style>
11
</head>
12
​
13
<body>
14
​
15
    <h1>font-variant 속성을 이용한 폰트의 variant 설정</h1>
16
    <p class="normal">이 문단은 normal 스타일이 적용되어 있습니다.</p>
17
    <p class="smallCaps">이 문단은 Small-Caps 글꼴이 적용되어 있습니다.</p>
18
​
19
</body>
20
​
21
</html>