Simple HTML tags
Caliban documents let you include HTML tags. (
find out more about Caliban Here are some of the most useful.
Emboldening text Put tags at the start and end of your text, as follows:
<b>Emboldening text</b>
Italicising text Put tags at the start and end of your text, as follows:
<i> Italicising text</i>
Bullet Points
- Bullet points
- Otherwise known as an unordered list
Insert tags as follows. The <ul> and </ul> tags define the start and end of the list, and the <li> and </li> tags the start and end of each item.
<ul>
<li>Bullet points</li>
<li>Otherwise known as an unordered list</li>
</ul>
Numbered items
- Numered items
- Otherwise known as an ordered list
The way this works is very similar to that for bullet points, except that the start and end tags are different.
<ol>
<li>Numered items</li>
<li>Otherwise known as an ordered list</li>
</ol>