Answers for "which of the following html tags can be used to define table row in html?"

1

table row html

<table>
	<tr> <!-- Table Row - 1 -->
    	<td>Column 1</td>
        <td>Column 2</td>
    </tr>
	<tr> <!-- Table Row - 2 -->
    	<td>Column 1</td>
        <td>Column 2</td>
    </tr>
</table>
Posted by: Guest on March-14-2022

Code answers related to "which of the following html tags can be used to define table row in html?"

Browse Popular Code Answers by Language