unicode-range.html 463 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="match" href="reference/unicode-range-ref.html" />
  5. <style>
  6. @font-face {
  7. font-family: 'HashFont';
  8. src: url('assets/HashSans.woff');
  9. unicode-range: U+0041; /* Only letter 'A' */
  10. }
  11. .text {
  12. font-family: 'HashFont', 'SerenitySans';
  13. font-size: 100px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="text">AB</div>
  19. </body>
  20. </html>