HTM46


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Tables arrange and organize content into columns and rows. Basically, they can be made via the container tags
. Each row within the table is defined by the container tags <TR></TR>. Moreover, each cell or data within a row is defined by the container tags <TD></TD>.


..Back to the top..



OUTPUT:


Computer Books, Software, Hardware IT LEARNING
BOOKS SOFTWARE HARDWARE
Creative Design Adobe Asus Notebook
Office Productivity Microsoft InFocus Projector


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>Computer Books, Software, Hardware</TITLE></HEAD>
<BODY>
<CAPTION>IT LEARNING</CAPTION>
<TABLE BORDER = 1 BORDERCOLOR = #FF0000>
<TR BGCOLOR = #FF0000>
<TH></TH>
</TR>
<TR>
<TH ALIGN = center WIDTH = 200>BOOKS</TH>
<TH ALIGN = center WIDTH = 200>SOFTWARE</TH>
<TH ALIGN = center WIDTH = 200>HARDWARE</TH>
</TR>
<TR>
<TD ALIGN = center>Creative Design</TH>
<TD ALIGN = center>Adobe</TH>
<TD ALIGN = center>Asus Notebook</TH>
</TR>
<TR>
<TD ALIGN = center>Office Productivity</TH>
<TD ALIGN = center>Microsoft
<TD ALIGN = center>InFocus Projector</TH>
</TR>
</TABLE>
</BODY>
</HTML>


..Back to the top..