Newer
Older
minerva / Tests / LibWeb / Ref / unicode-range.html
@minerva minerva on 13 Jul 462 bytes Initial commit
<!DOCTYPE html>
<html>
<head>
    <link rel="match" href="reference/unicode-range-ref.html" />
    <style>
        @font-face {
            font-family: 'HashFont';
            src: url('assets/HashSans.woff');
            unicode-range: U+0041; /* Only letter 'A' */
        }

        .text {
            font-family: 'HashFont', 'MinervaSans';
            font-size: 100px;
        }
    </style>
</head>
<body>
    <div class="text">AB</div>
</body>
</html>