mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
288 B
HTML
21 lines
288 B
HTML
<!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>
|