| <!DOCTYPE html> |
| <!-- |
| | Unicode range test. Tests multiple unicode-range values and multiple |
| | font-families with the same style but different unicode ranges and sources. |
| | https://www.w3.org/TR/css3-fonts/#font-prop-desc |
| --> |
| <html> |
| <head> |
| <style> |
| @font-face { |
| font-family: 'TestFont'; |
| src: local('Dancing Script'); |
| unicode-range: U+3d, U+4d-5a; /* =, M-Z */ |
| } |
| @font-face { |
| font-family: 'TestFont'; |
| src: local('Noto Serif'); |
| unicode-range: U+26; /* & */ |
| } |
| body { |
| background-color: black; |
| font-size: 75px; |
| color: #fff; |
| font-family: 'TestFont', 'Roboto'; |
| } |
| </style> |
| </head> |
| <body> |
| <div>Me & You = Us</div> |
| </body> |
| </html> |