Is the following code semantic use of HTML tables?
<table>
<tbody>
<tr>
<th>Phone</th>
<td>+1234567</td>
</tr>
<tr>
<th>Email</th>
<td><a href="mailto:name@example.com">name@example.com</a></td>
</tr>
<tr>
<th>Fax</th>
<td>+1234568</td>
</tr>
</tbody>
</table>
Unformatted, it will look like this:

Seems to be tabular data to me. (Thus, not only done for layout — although a side-effect is that it helps for having equal columns.)