Text can be formatted using HTML tags:


Break text onto a new line

Tag: <br/>

Example usage:

This is<br/>a line break.

How it will appear:

This is

a line break.


Bold text

Tag: <b>BOLD TEXT GOES HERE</b>

Example usage:

This is <b>bold</b> text.

How it will appear:

This is bold text.


Italicized text

Tag: <i>ITALICIZED TEXT GOES HERE</i>

Example usage:

This is <i>italicized</i> text.

How it will appear:

This is italicized text.


Underlined text

Tag: <u>UNDERLINED TEXT GOES HERE</u>

Example usage:

This is <u>underlined</u> text.

How it will appear:

This is underlined text.


Strikethrough text

Tag: <s>STRIKETHROUGH TEXT GOES HERE</s>

Example usage:

This is <s>strikethrough</s> text.

How it will appear:

This is strikethrough text.


Display a tappable link

Tag: <a href="LINK GOES HERE">VISIBLE TEXT GOES HERE</a>

Example usage:

This is a link: <a href="https://eventzeeapp.com/">https://eventzeeapp.com/</a>

How it will appear:

This is a link: https://eventzeeapp.com/


Alternatively, if you want to display words instead of the actual link, you can do:

This is a <a href="https://eventzeeapp.com/">link</a>.

How it will appear:

This is a link.