Some tags require an end.
- start <XXX>
- end </XXX> - the end tag uses a forward slash in front of the
letters
<B> - Bold text, requires an end tag </B>
<CENTER> - Centers text on the page, requires an end center </CENTER>
<P> - A paragraph, skips a line. (no end P required)
<BR> - This is a line break, use it when you want to stop a line at a certain place.
NOTE: Paragraph tags are not required for HTML, this is done automatically in this program.
<H1> - Header, requires an end tag </H1>
Headers are numbered 1 to 6, #1 being the largest.
The tag you need to use to add more images to your page is:
<IMG SRC="your_image.gif">
Just copy the above tag and place it in one of the paragraphs where you
would like the image to appear. Select the image you want to use
and replace the 'your_image.gif' with your image name.
You can only use .gif or .jpg images with this program.
<LI> - this is a list item, will show a bullet next to the item
<UL>
<OL> - this is an Ordered list (requires an end tag </OL>)
<LI> - this is a list item, will show a number next to the item
<OL>
To use the color codes simply put the color codes shown below into your font tags as shown:
<FONT COLOR="#FF0000"> This is your text </FONT>
The user will see:
This is your text
You can use basic colors in the quotes too, example "red" or "blue", etc. but for any fancy colors, you must use the appropriate hex code shown below:
| #000000 | #000030 | #000070 | #0000CC | #0000FF |
| #300000 | #300030 | #300070 | #3000CC | #3000FF |
| #003000 | #003030 | #003070 | #0030CC | #0030FF |
| #303000 | #303030 | #303070 | #3030CC | #3030FF |
| #700000 | #700030 | #700070 | #7000CC | #7000FF |
| #703000 | #703030 | #703070 | #7030CC | #7030FF |
| #007000 | #007030 | #007070 | #0070CC | #0070FF |
| #307000 | #307030 | #307070 | #3070CC | #3070FF |
| #707000 | #707030 | #707070 | #7070CC | #7070FF |
| #00CC00 | #00CC30 | #00CC70 | #00CCCC | #00CCFF |
| #30CC00 | #30CC30 | #30CC70 | #30CCCC | #30CCFF |
| #70CC00 | #70CC30 | #70CC70 | #70CCCC | #70CCFF |
| #00FF00 | #00FF30 | #00FF70 | #00FFCC | #00FFFF |
| #30FF00 | #30FF30 | #30FF70 | #30FFCC | #30FFFF |
| #70FF00 | #70FF30 | #70FF70 | #70FFCC | #70FFFF |
| #CC0000 | #CC0030 | #CC0070 | #CC00CC | #CC00FF |
| #FF0000 | #FF0030 | #FF0070 | #FF00CC | #FF00FF |
| #CC3000 | #CC3030 | #CC3070 | #CC30CC | #CC30FF |
| #FF3000 | #FF3030 | #FF3070 | #FF30CC | #FF30FF |
| #CC7000 | #CC7030 | #CC7070 | #CC70CC | #CC70FF |
| #FF7000 | #FF7030 | #FF7070 | #FF70CC | #FF70FF |
| #CCCC00 | #CCCC30 | #CCCC70 | #CCCCCC | #CCCCFF |
| #FFCC00 | #FFCC30 | #FFCC70 | #FFCCCC | #FFCCFF |
| #CCFF00 | #CCFF30 | #CCFF70 | #CCFFCC | #CCFFFF |
| #FFFF00 | #FFFF30 | #FFFF70 | #FFFFCC | #FFFFFF |