Yes! You can add fonts to Wix. There are two ways to do this:
1. Use the Wix Editor
Exciting update! We've collaborated with Wix to offer WBI users with a free plan for all website creation needs - Explore the details here.
Adding fonts to your Wix site is easy with the Wix Editor. Simply click on the text element you want to edit and select a new font from the drop-down menu. You can also change the font size, color, and style.
2. Use HTML
If you’re comfortable working with HTML, you can add custom fonts to your Wix site by adding a few lines of code. First, you’ll need to find a font that you want to use. Then, you can add the following code to your site’s HTML:
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Roboto', sans-serif; }
</style>
Just be sure to replace ‘Roboto’ with the name of the font you’re using.