HTM51


DESCRIPTION
OUTPUT
SOURCE CODE

DESCRIPTION

A table with a horizontal heading.














OUTPUT

A Web page with horizontal headings

Customer Information of a Bank

Account Number First Name Last Name Account Balance
00057 John Doe 1234.56
00100 Lisa Stones 5327.78
00200 Joe Ellis 25.00
00316 Marilyn Walsh 359.37
00439 Anna Clinton 2483.33


SOURCE CODE

<HTML>
<HEAD><TITLE>A Web page with horizontal headings</TITLE></HEAD>
<BODY>
<TABLE BORDER = 5 ALIGN = center>
<CAPTION><FONT COLOR = blue><H2>Customer Information of a Bank</H2></FONT></CAPTION>
<TR BGCOLOR = red>
<TH>Account Number</TH>
<TH>First Name</TH>
<TH>Last Name</TH>
<TH>Account Balance</TH>
</TR>
<TR BGCOLOR = yellow>
<TD>00057</TD>
<TD>John</TD>
<TD>Doe</TD>
<TD>1234.56</TD>
</TR>
<TR BGCOLOR = yellow>
<TD>00100</TD>
<TD>Lisa</TD>
<TD>Stones</TD>
<TD>5327.78</TD>
</TR>
<TR BGCOLOR = yellow>
<TD>00200</TD>
<TD>Joe</TD>
<TD>Ellis</TD>
<TD>25.00</TD>
</TR>
<TR BGCOLOR = yellow ALIGN = center>
<TD>00316</TD>
<TD>Marilyn</TD>
<TD>Walsh</TD>
<TD>359.37</TD>
</TR>
<TR BGCOLOR = yellow ALIGN = right>
<TD>00439</TD>
<TD>Anna</TD>
<TD>Clinton</TD>
<TD>2483.33</TD>
</TR>
</TABLE>
</BODY>
</HTML>


BACK