How to Create Text Content for Your Web Site.

When creating text content for your web pages you can either type directly into the text boxes on the Admin Page or you can create the text ahead of time using a text editor, such as Note Pad.

Here are some formatting tricks that you can use to spice up your pages.
Line Break (end of line, start new line)
If you want to create a
'Line Break' you can end a line of text with a '<br>'.

Hint:  Use two <br><br> together to put an empty line between paragraphs.

Example:

This is the end <br> of the line.

Produces:
This is the end
of the line.


Underline 
If you want to
Underline text you can begin the text to be underlined with a '<u> and end the text with a '</u>.
Example:

<u>This text is Underlined.</u>

Produces:
This text is Underlined.


Italics 
If you want to
Italisize text you can begin the text to be Italisized with a '<i> and end the text with a '</i>.
Example:

<i>This text is Italisized.</i>

Produces:
This text is Italisized.


Bold 
If you want to
Bold text you can begin the text to be Bolded with a '<b> and end the text with a '</b>.

Hint:  You can combine effects, such as Bold and Italics.  Use both codes separately, e.g. <b><i> text </b></i>.

Example:

<b>This text is Bold.</b>

Produces:
This text is Bold.


Color 
If you want to
Color text you can begin the text to be Colored with a '<font color=red> and end the text with a '</font> to make the text red.

Hint:  You can see a more color choices with their names by clicking here.

Example:

<font color=red>This text is RED.</font>

Produces:
This text is RED.