Formatting Text with HTML

You can format text in templates, both in PDFs and emails, using basic HTML.

Line Breaks

To add a line break, use the <br> tag. Place this tag twice to create a new paragraph.

After this line, a double line break.<br><br>

Headings

Do you want to place a heading above a section of text? We recommend doing this with bold text, followed by a <br>.

<strong>Returns</strong><br>
If you want to return an item, please first register it on our website.

Bold, Italic, or Strikethrough

To make text bold, place it between <strong> tags. For italic text, use <em> tags, and for strikethrough, use <del> tags.

<strong>Bold</strong>
<em>Italic</em>
<del>Strikethrough</del>

Lists

There are two types of lists: unordered and ordered. An unordered list is placed between <ul> tags, and an ordered list is placed between <ol> tags. Each item in the list is placed between <li> tags.

<ul>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>

<ol>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ol>

Links

You can paste links to web addresses directly into the email. Picqer will recognize them and automatically convert them into clickable links.

Did you find an answer to your question?