blob: fca554d391d96eee11a77ba85054c1aacd769e96 (
plain)
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
32
33
|
<!doctype html>
<html>
<head>
<meta charset='utf-8'/>
<meta name='viewport' content='initial-scale=1' />
<style>
@font-face {
font-family: test;
src: url(../fonts/sil/CharisSIL-R.ttf);
}
body {
font-family: test;
line-height: 2;
}
.container {
padding: 1rem 0 0.3rem;
}
.placeholder {
font-style: italic;
position: absolute;
font-size: 8em;
}
</style>
</head>
<body>
<div class='container'>
<div class='placeholder'>a‮Ị̤̥̦‬z
</div>
</body>
</html>
|