Yeni sayfanın başlıdfgdğı
The HTML TABLE tag is the opening tag used to create a table within a web page.
To add color to your HTML TABLE cells, add BGCOLOR="#color code" within the <TD> tag.
<TABLE CELLPADDING="2" CELLSPACING="2" WIDTH="50%"> <TR> <TD BGCOLOR="#CCCCCC">Column 1</TD> <TD BGCOLOR="#CCCCCC">Column 2</TD> </TR> <TR> <TD>Row 2</TD> <TD>Row 2</TD> </TR> </TABLE> |
Column 1 | Column 2 |
Row 2 | Row 2 |