what is html TR tag

HTML tag <tr> tag use create row inside a Table.
row define a row within an html table.functions as container table cells.
Syntax
Syntax of HTML <tr> tag
<table>
<tr>
.
. <!-- body tag content visible to webpage-->
. </tr>
</table>
how to use TR tag in h
Example
<!DOCTYPE html>
<html>
<head>
<title> HTML TR table tag </title>
</head>
<body>
<tr> Row 1 write content</tr>
<tr> Row 2 write content</tr>
<tr> Row 3 write content</tr>
</body>
</html>
how to use TR tag in html
Explain Program
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html