blob: 37f2dfa504371e193002d985fd1d6ec6dd6f9930 (
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.5px/0 Ahem;
transform: scale(50);
}
</style>
<div>test</div>
|