HTM50


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     A table with cell color and data aligned at the center


..Back to the top..



OUTPUT:


Tables

Directory

Name Mobile Number Landline
Michael Vincent 0916 4561238 568 1239
Matthew Francis 0939 4561238 568 7813
Agnes Marie 0922 4561238 568 4589


..Back to the top..



SOURCE CODE:


<HTML>
<HEAD><TITLE>Tables</TITLE><HEAD>
<BODY>
<TABLE ALIGN = center BORDER =3 BORDERCOLOR = red WIDTH = 600 CELLPADDING = 4 CELLSPACING = 6>
<CAPTION><H3>Directory</H3></CAPTION>
<TR BGCOLOR = yellow>
<TD><B>Name</TD>
<TD><B>Mobile Number</B></TD>
<TD><B>Landline</TD>
</TR>
<TR>
<TD ALIGN = center BGCOLOR = pink>Michael Vincent</TD>
<TD>0916 4561238</TD> <TD>568 1239</TD>
</TR>
<TR>
<TD ALIGN = center BGCOLOR = pink >Matthew Francis</TD>
<TD>0939 4561238</TD>
<TD>568 7813</TD>
</TR>
<TR>
<TD ALIGN = center BGCOLOR = pink >Agnes Marie</TD>
<TD>0922 4561238</TD>
<TD>568 4589</TD>
</TR>
</TABLE>
</BODY> </HTML>


..Back to the top..