Basic HTML Table

Example showing a simple HTML table.

Preview

Code

<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>25</td>
</tr>
<tr>
<td>Anna</td>
<td>30</td>
</tr>
</table>

More HTML Tables Examples (11)