Basic Framework commands:

     command                              Syntax
  • Html~(Required) ``````` <html> </html>
  • Head~(Required) ``````` <head> </head>
  • Title~(Necessary) ``````` <title> </title>
  • Meta~(Search engines) ``````` <meta>
  • Body~(Required) ``````` <body> </body>
  • Background~ ``````` ="name.gif"
  • Text~ ``````` ="000000"
  • Link~ ``````` ="#0000ff"
  • Vlink~ ``````` ="#FF00FF"
  • Alink~ ``````` ="#FF0000"

Format Control:

     command                              Syntax
  • P~ ``````` <p> </p>
  • BR~ ``````` <br>
  • Center~ ``````` <Center></Center>
  • Ul~ ``````` <ul></ul>
  • Ol~ ``````` <ol></ol>
  • Li~ ``````` <li>
  • Dl~ ``````` <dl> </dl>
  • Pre~ ``````` <pre></pre>

Headings:

     command                              syntax
  • H1~ ``````` <h1></h1>
  • H2~ ``````` <h2></h2>
  • H3~ ``````` <h3></h3>
  • H4~ ``````` <h4></h4>
  • h5~ ``````` <h5></h5>
  • H6~ ``````` <h6></h6>

Character formats:

     command                              syntax
  • B~ ``````` <b></b>
  • I~ ``````` <i></i>
  • Font~ ``````` <font></font>
  • Color~ ``````` Font size="1"...color="blue" color="#0000FF"

Tables:>

     command                              syntax
  • Table~ ``````` <tables></tables>
  • Tr~ ``````` <tr></tr>
  • TD~ ``````` <td></td>
  • width``````="200" align```````="right" border``````="1"

Images:

      `````` command``````syntax
  • img src``````="name+file exe" Width`````="100%"
  • Height`````="11" Alt`````="*"

Links:

`     ````` command `````syntax
  • a href``````="name.htm">a link to name page

Image link syntax <img src="name.file ext"> example: < img src=logo.gif"<

DESCRIPTION OF TABLE TAGS AND THERE TAGS
Description Syntax
Table structure: <TABLE>begins </TABLE>ends
Number of rows: <TR>begins </TR>ends
Table data: <TD>begins </TD>ends
Table header: <TH>begins </TH>ends
TABLE APPEARANCE TAGS
DESCRIPTION SYNTAX
Table border: <table border=size>
Space between table cells: <Table cellspacing=size>
Increase text between table text and cell border: <table cellpadding=size>
Specifying table size: <tablewidth=size height=size>
Spanning rows & columns: <TDrowspan=value>
<TDColspan=value>
Table background: <table-BGcolor=color>
<TR-BGcolor=color>
<TD-BGcolor=color>
<TH-BGcolor=color>