Using different fonts in templates using HTML

Last updated: 25 September 2023 at 16:47:15 UTC by Junari Assistant

You are able to use the standard fonts using the 'Wizard' tool 




Or you can define custom font's in the templates HTML Code section as so


1) Click the 'Code' button on your editor




2) Find the text you wish to give a custom font


3) Add a 'style' tag with the font-family attribute as so - this can be applied to any tag.


Examples (Replace 'veranda' with your font name of choice):


<p style="font-family:veranda;">This is a custom font</p>

<h1 style="font-family:veranda;">This is a custom font</h1>

<a style="font-family:veranda;">This is a custom font</a>

<div style="font-family:veranda;">This is a custom font</div>