View video tutorial

HTML <tr> Tag

HTML

The <tr> tag defines a table row.

HTML <tr> Tag


The <tr> element defines a row of cells in a table in an HTML document.

A <tr> element contains a mixture of one or more <td> (data cells) and <th> (header cells) elements.

Global attributes

Global attributes may be applied on all elements, although some elements may have no effect on them.

<accesskey>, <class>, <contenteditable>, <contextmenu>, <data-*>, <dir>, <draggable>, <dropzone>, <hidden>, <id>, <lang>, <spellcheck>, <style>, <tabindex>, <title>, <translate>.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

<tr>
    <th>First Name</th>
    <th>Last Name</th>
    <th>Job ID</th>
    <th>Salary</th>
</tr>
<tr>
    <td>Lex</td>
    <td>De Haan</td>
    <td>AD_VP</td>
    <td>17000</td>
</tr>
Try it Now »

Click on the "Try it Now" button to see how it works.