How Do I Add Custom Fonts?
Contents
You can connect the needed font using the “Code” element, add it to your form, and paste the following:
<style> @import 'https://fonts.googleapis.com/css?family=Georgia'; #id of the block where the font will be changed { font-family: Georgia, serif !important; } </style>
Where: 'Georgia', serif — name and font type.
Where: https://fonts.googleapis.com/css?family=Georgia — the link to connect the font (only over HTTPS).