blob: d83d81b3c7bf1ec510930117ba968b39f17dd732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<style type="text/css">
@font-face {
font-family: local-gentium;
src: url(../fonts/sil/GenR102.ttf);
}
p {
font: 300% local-gentium, serif;
font-weight: bold;
color: rgba(100,255,100, 0.2);
margin: 0;
}
</style>
</head>
<body>
<p>Test</p>
</body>
</html>
|