123456789101112131415161718192021 |
- <!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', 'SerenitySans';
- font-size: 100px;
- }
- </style>
- </head>
- <body>
- <div class="text">AB</div>
- </body>
- </html>
|