How to use Google Fonts in Landbot
Landbot offers by default a range of fonts that you might want to use in your bot. But in some cases you might want to use something more personal or special. Google Fonts offers a wide range of free fonts that you can use also in your bots. Here is how:
- Select the Font you want to use in Google Fonts
- Select @IMPORT option
- Here we will copy the @import and CSS properties

- Now, in the DESIGN / ADVANCED / ADD CSS section of the bot we will add the following code:
@import url('https://fonts.googleapis.com/css?family=Vibes&display=swap');
*{font-family: 'Vibes', cursive;}
As you can see, we are using the snippets given by Google Fonts
- Press APPLY and SAVE