blob: 5e9509783f97b57ed059f7b7ff90386a4d2f76b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<style type="text/css">
@font-face {
font-family: Pos;
src: url(../fonts/PositioningTest1.ttf);
}
p {
font-family: Pos;
font-size: 50px;
opacity: 0.5;
}
</style>
</head>
<body>
<!-- The capital O character in the PositioningTest font
is actually a raised lowercase o glyph -->
<p>HellO WOrld!</p>
</body>
|