Back to BuildingBlocks Index

HTML Table Skeleton

Tables can get pretty complicated. I've provided the simplest example of a table. It saves me alot of time by forming out the initial layout, to which I can add complexity as needed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>	</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<TABLE
	BORDER=0
	WIDTH="100%"
	CELLPADDING=0
	CELLSPACING=0>
<TR>
	<TD>
		Content of table cell goes here.
	</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Back to BuildingBlocks Index