Break. This will put the text after the <br>
on a new line.
<br>
Paragraph. This will start a new paragraph with a blank
line between.
<p>
Bold. The text between the tags will be bold.
<b></b>
Image. The image file will be displayed. Here are
some additional attributes you can set:
<img src="img/my_file.gif"> - default
<img src="img/my_file.gif" align=right> - place image to the right
of text.
<img src="img/my_file.gif" border=0> - turn the border on the image
off.
<img src="img/my_file.gif" width=200 height=200> - set the size
of the image.
<img src="img/my_file.gif" alt="this is my file" > - alternate text
for the image.
Header Level. This will set the header level for the text
between the tags. These are used in outlines and to highlight and
offset text.
<h1></h1>
<h3></h3>
Web Link. This will allow you to link to other web pages
on your site or out on the web.
<a href="http://www.ackme.net">AckMe</a> - link to my (external)
web site
<a href=page2.htm>My Page Two</a> - link to page2.htm on your
site (internal)
<a name=index1>Index One text</a> - Define a page index anchor
<a href=#index1>Goto Index1</a> - Goto index1 on the same page
<a href=page2.htm#index1>Goto Index1</a> - Goto index1 on a different
page
Table. The example below will create a table with 2 rows
and 2 columns.
<table>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
</table>