-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebfont.html
More file actions
31 lines (31 loc) · 887 Bytes
/
webfont.html
File metadata and controls
31 lines (31 loc) · 887 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>브라우저 글꼴사용</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap");
.ng-font {
font-family: "Nanum Pen Script", cursive;
}
p {
font-size: 30px;
}
@font-face {
font-family: trana;
src: local("trana"), url("trana.eot"), url("trana.woff") format("woff"),
url("trana.ttf") format("truetype");
}
.w-font {
font-family: "trana", sams-serif;
}
</style>
</head>
<body>
<p>브라우저 기본 글꼴 사용</p>
<p class="ng-font">나눔고딕 웹 폰트 사용</p>
<p>Using Default</p>
<p class="w-font">Using Trana Fonts</p>
</body>
</html>