Horje
How to create HTML Table Rows

Each table row starts with a <tr> and ends with a </tr> tag.


Example of HTML Table Rows

tr stands for table row.
 <table>
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
  <tr>
    <td>16</td>
    <td>14</td>
    <td>10</td>
  </tr>
</table> 

Full Example of HTML Table Rows

tr stands for table row.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<style>
table, th, td {
  border:1px solid black;
}
</style>
<body>

<h2>TR elements define table rows</h2>

<table style="width:100%">
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
  <tr>
    <td>16</td>
    <td>14</td>
    <td>10</td>
  </tr>
</table>

<p>To understand the example better, we have added borders to the table.</p>

</body>
</html>

Output should be:

Full Example of HTML Table Rows





Related Articles
What is HTML Tables HTML Tables
How to create an HTML Table HTML Tables
How to create HTML Table Cells HTML Tables
How to create HTML Table Rows HTML Tables
How to create HTML Table Headers HTML Tables

Single Articles
Example of HTML Table RowsHTML Tables
Full Example of HTML Table RowsHTML Tables

Read Full:
HTML Tables
Category:
Web Tutorial
Sub Category:
HTML Tables
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
68


Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table5

Share on: