LaborNet BannerHelp

Simple HTML


This guide contains simple HTML codes that can be used when adding press releases, calendar events or urgent actions to LaborNet

For more information about HTML


Spaces and line breaks do not matter

No matter how many spaces and line breaks that you use it will always appear as one space. This means if you just paste in the entite press release, it will appear as one large block of text

<P> - paragraph

You must use this code to put a double return

between paragraphs

<HR> - horizontal rule

Draws a horizontal rule across the screen. Use sparingly

<H3>heading text</H3> - heading style

There are 6 levels of heading. Best to use a level 3 heading (such as the one above). Use sparingly. Don't forget the closing tag

<BLOCKQUOTE> indented text </BLOCKQUOTE>

Used to indent text (this paragraph is idented with this tag). You can have multiple indents. Don't forget the closing tag.

<B> bold text </B>

Change the format of the text to bold. Don't forget the closing tag.

<I> italic text </I>

Change the format of the text to italics. This can be hard to read on computer screens, so use sparingly. Don't forget the closing tag.

Creating a bulleted list

<UL>
	<LI>Banana
	<LI>Carrot
</UL>

This looks like:

Creating a numbered list

<OL>
	<LI>Banana
	<LI>Carrot
</OL>

This looks like:

  1. Banana
  2. Carrot

Creating a numbered list starting from a number other than 1

<OL>
	<LI VALUE=4>Banana
	<LI>Carrot
</OL>

This looks like:

  1. Banana
  2. Carrot

Creating a alpha numbered list

<OL TYPE=A>
	<LI>Banana
	<LI>Carrot
</OL>

This looks like:

  1. Banana
  2. Carrot

Creating links to other WWW pages

<A HREF="http://www.alp.org.au/">The Australian Labor Party</A>

This will look like: The Australian Labor Party

Special characters

Some characters can not be used and you must use special characters. Be very careful with smart quotes when pasting from word processors.

< &lt;
> &gt;
& &amp;
" &quot;
© &copy;

Formatting tabular data

There is a <TABLE> tag but this is a little complex. The easiest thing to do is to use the <PRE> text </PRE> tags

<PRE>
     ------------------
     Column 1  Column 2
     ------------------
      banana    yellow
      carrot    orange
     ------------------
</PRE>

This looks like:

     ------------------
     Column 1  Column 2
     ------------------
      banana    yellow
      carrot    orange
     ------------------

If you really wanted a table

<TABLE BORDER ALIGN=CENTER>
	<TH>Column 1<TH>Column 2
	<TR>
		<TD>banana	<TD>yellow
	<TR>
		<TD>carrot	<TD>orange
</TABLE>

This looks like:

Column 1Column 2
banana yellow
carrot orange


LaborNet Index[LaborNet Contents][Search][Contact LaborNet][Help]


URL: http://labor.net.au/help/index.html
Last Modified: Tuesday, 15-Nov-2005 18:34:36 EST

LaborNet - created by Social Change Online for Labor Council of NSW