References

Collection of references for web development.

HTML tr tag

Description

The HTML <tr> element represents a table row.

Example

<table>
	<tr>
		<th>Name</th>
		<th>Gender</th>
		<th>Age</th>
	</tr>
	<tr>
		<td>David</td>
		<td>Male</td>
		<td>23</td>
	</tr>
</table>