You may have noticed that some of our example widgets are using bold text, italic text or whitelines.
These are some simple advanced use cases to make the widget more scannable, and we’ll show you how to do it below!
Adding whitelines is done by using a break html tag <br>
Copy it here:
<br><br>
Adding bold text is done by using a bold html tags:
<b>
</b>
Copy it here:
<b>bold text!</b>
Adding italic text is done by using a italic html tags:
<em>
</em>
Copy it here:
<em>italic text!</em>
You can combine bold and italic text as you like:
Copy it here:
<b><em>bold & italic!</em></b>