Скачать SF Pro Text шрифт
```html<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: 'SF Pro Text';
src: url('sfprotext.woff2') format('woff2'),
url('sfprotext.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'SF Pro Text', Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Пример использования SF Pro Text на веб-странице</h1>
<p>Этот текст использует шрифт SF Pro Text.</p>
</body>
</html>
```