| |
<TABLE>
|
|
| |
Specifies a container for a table within your document. Inside these tags you can place <TR>,<TD>,<TH>,<CAPTION> and other <TABLE>tags.
EXAMPLE:
<TABLE BORDER="0">
<TR>
<TD><IMG SRC="pic.jpg" border="0" ALT="pine"></TD>
<TD VALIGN="middle">
<P>Above image is a picture. WOW!!!!</P>
</TR>
</TABLE>
|
|
| |
|
|
| |
|
|
| |
<TBODY>
|
|
| |
Defines the table body within a table. This tag must follow the <TFOOT> tag.
EXAMPLE:
<TABLE>
<THEAD>...
</THEAD>
<TFOOT>...
</TFOOT>
<TBODY>...
</TBODY>
|
|
| |
|
|
| |
|
|
| |
<TD>
|
|
| |
Contains a table cell. These tags go inside the <TR>tags.
EXAMPLE:
<TABLE BORDER="0">
<TR>
<TD><IMG SRC="pic.jpg" border="0" ALT="pine"></TD>
<TD VALIGN="middle">
<P>Above image is a picture. WOW!!!!</P>
</TR>
</TABLE>
|
|
| |
|
|
| |
|
|
| |
<TEXTAREA>
|
|
| |
Defines a multiple line text input field within a form. Place the <TEXTAREA> tags inside the <FORM> tags. To specify a default value in a <TEXTAREA> field, place the text between the <TEXTAREA> tags.
EXAMPLE:
<TEXTAREA NAME="comments" COLS="40" ROWS="5">No Comments</TEXTAREA>
|
|
| |
|
|
| |
|
|
| |
<TFOOT>
|
|
| |
Defines a table footer within a table. It must precede the <TBODY> tag.
EXAMPLE:
<TABLE>
<THEAD>...
</THEAD>
<TFOOT>...
</TFOOT>
<TBODY>...
</TBODY>
|
|
| |
|
|
| |
|
|
| |
<TH>
|
|
| |
Contains table cell headings. The <TH> tags are identical to the <TD> tags except that text inside <TH> is usually emphasized with bold-face font and centered within the cell.
EXAMPLE:
<TABLE BORDER="0">
<TR>
<TH><IMG SRC="pic.jpg" border="0" ALT="pine"></TH>
<TH VALIGN="middle">
<P>Above image is a picture. WOW!!!!</P>
</TH>
</TABLE>
|
|
| |
|
|
| |
|
|
| |
<THEAD>
|
|
| |
Defines a table header section. At least one table row must go within <THEAD>.
EXAMPLE:
<TABLE>
<THEAD>...
</THEAD>
<TFOOT>...
</TFOOT>
<TBODY>...
</TBODY>
|
|
| |
|
|
| |
|
|
| |
<TITLE>
|
|
| |
Gives the document an official title. The <TITLE> tags appear inside the document header inside the <HEAD> tags.
EXAMPLE:
<HTML>
<HEAD>
<TITLE>Web Design<TITLE>
<STYLE TYPE="text/cs's">
|
|
| |
|
|
| |
|
|
| |
<TR>
|
|
| |
Contains a row of cells in a table. You must place the <TR> tags inside the <TABLE> container, which can contain <TH> and <TD> tags.
EXAMPLE:
<TABLE BORDER="0">
<TR>
<TH><IMG SRC="pic.jpg" border="0" ALT="pine"></TH>
<TH VALIGN="middle">
<P>Above image is a picture. WOW!!!!</P>
</TH>
</TABLE>
|
|
| |
|
|
| |
|
|
| |
<TT>
|
|
| |
Displays text in a monospace font.
EXAMPLE:After I typed help, the words <TT>help : not found<TT> appeared on my screen.
|
|
| |
|
|
| |
|
|