HTM47
DESCRIPTION :
OUTPUT :
SOURCE CODE :
DESCRIPTION :
HTM47 a web page with tables also.
OUTPUT :
This table uses no borders
| CELL 1 | CELL 2 | CELL 3
|
| CELL 4 | CELL 5 | CELL 6
|
This table has a border that is 4 pixels thick
| CELL 1 | CELL 2 | CELL 3
|
| CELL 4 | CELL 5 | CELL 6
|
This table has a width of 200 pixels, a height of 100 pixels, and a border that is 4 pixels thick
| CELL 1 | CELL 2 | CELL 3
|
| CELL 4 | CELL 5 | CELL 6
|
This table has a width of 200 pixels, a height of 100 pixels, a border that is 4 pixels thick, and cell spacing of 8 pixels
| CELL 1 | CELL 2 | CELL 3
|
| CELL 4 | CELL 5 | CELL 6
|
SOURCE CODE:
<HTML>
<HEAD>
<TITLE>A web page with tables</TITLE>
</HEAD>
<BODY>
<FONT COLOR = red><CENTER>This table uses no borders
</CENTER></FONT>
<TABLE ALIGN =center>
<TR><TD>CELL 1<TD>CELL 2<TD>CELL 3
<TR><TD>CELL 4<TD>CELL 5<TD>CELL 6
</TABLE>
<P>
<FONT COLOR = red><CENTER>This table has a border that is 4 pixels thick</CENTER></FONT>
<TABLE ALIGN =center BORDER = 4>
<TR><TD>CELL 1<TD>CELL 2<TD>CELL 3
<TR><TD>CELL 4<TD>CELL 5<TD>CELL 6
</TABLE>
<P>
<FONT COLOR = RED><CENTER>This table has a width of 200 pixels, a height of 100 pixels, and a border that is 4 pixels thick</CENTER></FONT>
<TABLE ALIGN =center BORDER = 4 WIDTH = 200 HEIGHT = 100>
<TR><TD>CELL 1<TD>CELL 2<TD>CELL 3
<TR><TD>CELL 4<TD>CELL 5<TD>CELL 6
</TABLE>
<P>
<FONT COLOR = RED><CENTER>This table has a width of 200 pixels, a height of 100 pixels, a border that is 4 pixels thick, and cell spacing of 8 pixels</CENTER></FONT>
<TABLE ALIGN =center BORDER = 4 WIDTH = 200 HEIGHT = 100 CELLSPACING = 8>
<TR><TD>CELL 1<TD>CELL 2<TD>CELL 3
<TR><TD>CELL 4<TD>CELL 5<TD>CELL 6
</TABLE>
</BODY>
</HTML>
RETURN