blob: 3b14167ad2fb38af43a136ab07531dafe6edb4e7 (
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 does NOT support the 'smcp' feature */
@font-face {
font-family: test;
src: url(../fonts/dejavu-sans/DejaVuSans.ttf);
}
body {
font: 100px test;
}
span {
font-size: 80px;
}
</style>
</head>
<body>
<div>S<span>MALL</span> C<span>APS</span>
</body>
</html>
|