Available HTML tags

You can include basic HTML tags in the captions for coloring books in My Coloring Book.

This is a subset of regular HTML and there are also some important differences. Unlike regular HTML any line-breaks in your text are treated as a new paragraph. This can be useful as you don't need to explicitly use <p> tags, but can also be annoying when you want to use line-breaks to make the source code clearer.

Available Tags

  • Anchor tag (<a>)
  • Bold tag (<b>)
  • Break tag (<br>)
  • Font tag (<font>)
  • Italic tag (<i>)
  • List item tag (<li>)
  • Paragraph tag (<p>)
  • Text format tag (<textformat>)
  • Underline tag (<u>)

Anchor tag (<a>)

You can use the href and target attributes. E.g.

<a href='http://www.keasoftware.com' target='_blank'>Visit Kea Software</a>

Bold tag (<b>)

E.g.

This is <b>bold</b>

Break tag (<br>)

E.g.

There is a break<br>in this line.

Note: Any regular line-breaks in your text are treated as a new paragraph.

Font tag (<font>)

You can include face, size and color attributes. E.g.

<font size="18" color="#FF00FF"face="Times,Times New Roman,_serif">Example</font>

Italic tag (<i>)

E.g.

This is <i>italic</i>.

List item tag (<li>)

Creates bulleted items. Note that there are no <ul> or <ol> tags. You can only create a bulletted list not a numbered one.

E.g.

<li>one</li><li>two</li><li>three</li

Paragraph tag (<p>)

<p>First paragraph.</p><p>Second paragraph</p>.

Note: Any line-breaks in your text are also treated as a new paragraph.

Text format tag (<textformat>)

Provides some basic text formatting capabilities. The following attributes can be used...

blockindent Specifies the indentation, in points, from the left margin to the text in the <textformat> tag body.

indent Specifies the indentation, in points, from the left margin or the block indent, if any, to the first character in the <textformat> tag body.

leading Specifies the amount of leading (vertical space) between lines.

leftmargin Specifies the left margin of the paragraph, in points.

rightmargin Specifies the right margin of the paragraph, in points.

tabstops Specifies custom tab stops as an list of numbers (e.g. tabstops="120,300,420").

Underline tag (<u>)

E.g.

This is <u>underlined</u>.