blob: 13e69236f4fd2660f63fa69ed1b58010ee12ebfc (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-size: 24pt;
font-family: "PT Sans";
font-weight: bold;
}
#a {
text-rendering: optimizelegibility;
}
#b {
text-rendering: geometricprecision;
}
#c {
text-rendering: optimizespeed;
}
</style>
</head>
<body>
<div id=a>Harry finally caught the Snitch.</div>
<div id=b>Harry finally caught the Snitch.</div>
<div id=c>Harry finally caught the Snitch.</div>
</body>
</html>
|