blob: 3b9b25bceca24bf06b9f0688293b837e42f20df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<style>
@font-face {
font-family: colr-unset;
src: url("../fonts/colr-unset.ttf");
}
span {
font-family: colr-unset;
font-size: 25pt;
}
</style>
</head>
<body>
<span>A</span><span style="color: #00FF00FF">A</span><span style="color: #0000FFFF">A</span>
</body>
</html>
|