blob: 4da5d882ae23042ccad5c8b5db3caadabb8311e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<style>
p { font-family: sans-serif; font-size: 24pt; }
.small { font-size-adjust: 0.25; }
.large { font-size-adjust: 0.9; }
</style>
<body>
<p>hello</p>
<p class="small">small</p>
<p class="large">world</p>
</body>
</html>
|