blob: d56a6694e0a5586863bf99937dbcaea0fdae85df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
/* load a font that supports the Graphite 'smcp' feature */
@font-face {
font-family: test;
src: url(../fonts/sil/CharisSIL-R.ttf);
}
body {
font: 100px test;
}
span {
font-size: 80px;
}
</style>
</head>
<body>
<div>S<span>MALL</span> C<span>APS</span>
</body>
</html>
|