HTML <row> tag

Html <row> : Definition

HTML table tag is used to display data in tabular form (row * column).

• The HTML table model allows authors to arrange data - text, preformatted text, images, links, form, form fields, other tables, etc. -- into rows and columns of cells.

The HTML tables are created using the <table> tag in which the <tr> tag is used to create table row and <td> tag is used to create data cells. The elements under <td> are regular and left aligned by default.

Html <row> example

Output:


 
Column1 Column2 Column3
Row1 --> -- --
Row2 --> -- --
Row3 --> -- --