User Guides
< Back to Article ListUsing different fonts in templates using HTML
Last updated: 24 June 2025 at 17:20:59 UTC by Administrator
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>