blob: cf3c64e8cb61cc7ee6c6920abcd1e67c1d71c308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<meta charset=utf-8>
<style>
@font-face {
font-family: Ahem;
src: local("Ahem"), url(Ahem.ttf);
}
div {
width: 0;
height: 0;
position: absolute;
top: 50px;
font: 0.1px/0 Ahem;
transform: scale(250);
}
</style>
<div>test</div>
|