Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> @font-face { font-family: 'MyFont'; /* Define the custom font name */ src: url('myfont.woff2') format('woff2'), url('myfont.woff') format('woff'); /* Define where the font can be downloaded */ unicode-range: U+00-FF; /* Define the available characters */ } div { font-size: 3em; font-family: MyFont, Helvetica, sans-serif; } </style> </head> <body> <h2>Пример свойства unicode-range</h2> <div>Mary и Jack друзя.</div> </body> </html>