HTML — Tables
Tables help to show information in rows and columns. Use <table>
, <tr>
(row), <td>
(cell).
<table border='1'>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Alice</td><td>10</td></tr>
<tr><td>Bob</td><td>12</td></tr>
</table>
Tables help to show information in rows and columns. Use <table>
, <tr>
(row), <td>
(cell).
<table border='1'>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Alice</td><td>10</td></tr>
<tr><td>Bob</td><td>12</td></tr>
</table>