-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
28 lines (27 loc) · 816 Bytes
/
test.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
@font-face {
font-family: LongLigaTest;
src: url("./font-withliga.otf");
}
body,
textarea {
font-family: LongLigaTest, sans-serif;
font-size: 48px;
}
</style>
</head>
<body>
<div>
this is an early test area, used for testing ligatures. firefox only supports ligatures
up to 64, so it wasn't used very much.
</div>
<div>The quick brown fox jumped over the lazy dog.</div>
<textarea></textarea>
</body>
</html>