Developing Webs Tutorial Guidance For Building and Maintaining A Web Site and More

HTML Tutorials and Generators


HTML Tutorials
Cascading Style Sheets Tutorials
Flash Tutorials
Paint Shop Tutorials
Animation Tutorials
Photo Shop Tutorials
Front Page Tutorials
Dream Weaver Tutorials
Publishing Tutorials

E-Mail Home
 
 
 
 
 

 

HTML Code

<TR>...</TR>


Table Row <TR> is used in a table to specify the start and end of a row. The contents in a row must be i n side data cells within a row.


Attributes:

  • align
  • bgcolor
  • char
  • charoff
  • valign
     

Usage:

<TABLE border color="FFFFFF" cellpadding="10">
   <TR>
        <TD>this data cell is in row 1
        </TD>
   </TR>
   <TR>
       <TD>THis data cell is in row2
       </TD>
   </TR>
</TABLE>

Will look like this:

this data cell is in row 1
THis data cell is in row2

Developing Webs Group © Copyright 2001-2002 All Rights Reservedd

Web Master