Your Guide to Professional
Web Site Design and Development

HTML Tips
HTML Codes
Web Development
Web Design Tips
JavaScript Codes
216 Web Safe Colors
CSS Tutorial
JavaScript Tutorial
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design TipsJavascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Customizing HTML Table Background Color

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>

Browser View
Column 1 Column 2
Row 2 Row 2

 More Web Design Tips