When you add text to some of the fields, it is possible to use simple text formatting tags to adjust the formatting of the text.
tags you can use are as follows:
h2, h3, strong, b, br, center, em, font, i, a
Instructions.
line break: <br />
Insert the <br /> tag at the end of any line where a line-break is to occur.
To create a blank line (like a paragraph) insert 2 tags, like this : <br /><br />
headings: <h2>, <h3>
These tags make Headings simply enclose the text with a START and an END tag
The <h2> style is the same one we use on the template for headings.
A start tag looks like this : <h2>
An end tag looks like this : </h3>
example: <h2>This is a heading.</h2>
Text formatting tags: <strong>, <b>, <em>, <font>, <i>
These tags will adjust the font.
<strong>makes text bold</strong>
<b>makes text bold too</b>
<em>creates italic text</em>
<i>creates italic text</i>
<font>advanced – allows you to adjust the font of text</font> (see this link for more help – http://www.w3schools.com/HTML/html_fonts.asp )
Layout tags: <center>
Using this tag will center text
<center>Center this text!</center>
Hyperlink anchor tags: <a>
The <a> tag will help you to create a link with a proper label.
See this website for more help: http://www.w3schools.com/HTML/html_links.asp