



|
Description
a web page with tables that has a diffrent sizes and thick of their border. Source Code <HTML> <HEAD> <TITLE>A web page with tables</TITLE> </HEAD> <BODY>HTML47. <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> Output ![]() |
  