Can I format text?

You can format text in your questionnaire as follows:

Bold

Enclose the content that should be bold with <b> and </b>.

Example: This sentence should be bold from <b>here to here</b>.

Becomes: This sentence should be bold from here to here.

Italic

Enclose the content that should be italic with <i> and </i>.

Example: This sentence should be italic from <i>here to here</i>.

Becomes: This sentence should be italic from here to here.

Underlined

Enclose the content that should be underlined with <u> and </u>.

Example: This sentence should be underlined from <u>here to here</u>.

Becomes: This sentence should be underlined from here to here.

Combinations

Those formats can be combined as well.

Example: This sentence should be bold, italic and underlined from <b><i><u>here to here</u></i></b>

Becomes: This sentence should be bold, italic and underlined from here to here.

Please ensure that the order of the markup language is adhered correctly, as shown in the above mentioned example.

Formatting of text with CSS

Users, who are familiar with CSS, can format text directly with Styles as well. To do this, simply use the tagĀ <span>TEXT</span>.

Example: This <span style="font-size: 20pt; color: red;">word</span> should appear in red and be displayed in font size 20.

Becomes: ThisĀ word should appear in red and be displayed in font size 20.