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!

Untitled

1. Adding whitelines / returns

Adding whitelines is done by using a break html tag <br>

Copy it here:

<br><br>

Untitled

2. Adding bold text

Adding bold text is done by using a bold html tags:

Copy it here:

<b>bold text!</b>

Untitled

3. Adding italic text

Adding italic text is done by using a italic html tags:

Copy it here:

<em>italic text!</em>

Untitled

4. Yes, combine them!

You can combine bold and italic text as you like:

Copy it here:

<b><em>bold & italic!</em></b>

Untitled

Untitled