Logo Web Pages | Images | Newsletters | Announcements | Site Settings | Website Reporting | HELP
Icon  
HTML - Text Formatting Help
 
   
 
General:
The text and images on your website are displayed using HTML code.

To adjust the text font, colour & style you will need to use some easy html code when editing your web pages in the Web Pages section of the administration area.
 

  1. To bold a piece of text, use the <b> html code. To finish bolding a piece of text use </b>

    Eg: to bold the word 'welcome' you would type:

    <b> welcome </b> 

    The result, when viewed on the website will be:

    welcome


     
  2. To change the colour of a piece of text, use the <font color="blue"> HTML code.
    (Note the American spelling of color).

    Eg: to Change the colour of welcome to blue, you would type:

    <font color="blue"> Welcome </font>

    The result, when viewed on your website will be:

    Welcome

    Standard colours are available, including
    red blue green black etc.  Exact colours can also be represented using RGB Notation. Eg <font color="#C52407"> is a shade of red

     
  3. To add a bullet list, use the <ul> HTML Code to begin the bulleted region. To separate bullet points, use the <li> HTML code.

    Eg: to Bullet a list of car brands you would type the following:

    <ul>
    <li> Holden </li>
    <li> Ford </li>
    <li> Toyota </li>
    </ul>

    The result, when viewed on your website will be:
  • Holden
  • Ford
  • Toyota