Data Table Example

Example displaying simple data in a table.

Preview

Code

<table border="1">
<tr>
<th>City</th>
<th>Population</th>
</tr>
<tr>
<td>London</td>
<td>9M</td>
</tr>
<tr>
<td>Tokyo</td>
<td>14M</td>
</tr>
</table>

More HTML Tables Examples (11)