Answers for "table two columns html"

0

table two columns html

<table>
	<tr>
    	<th>first column header</th>
        <th>second column header</th>
    </tr>
    <tr>
    	<td>first column data</td>
        <td>second column data</td>
    </tr>
    <tr>
    	<td>first column data</td>
        <td>second column data</td>
    </tr>
    <tr>
    	<td>first column data</td>
        <td>second column data</td>
    </tr>
</table>
Posted by: Guest on March-21-2022

Code answers related to "table two columns html"

Browse Popular Code Answers by Language