blob: 35cd516a6d15cf6ec2694e41b1fafe8b7624e46e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test for WOFF2</title>
<style>
@font-face {
font-family: test;
src: url(../fonts/sil/GenR102.woff2);
}
body {
font-family: test, monospace;
font-size: 24px;
}
</style>
</head>
<body>
Hello WOFF2 World!
</body>
</html>
|