una tabella può andare?

codice:
<table>
		<tr>
				<th scope="col"></th>
				<th scope="col">col1</th>
				<th scope="col">col2</th>
		</tr>
		<tr>
				<th scope="row">r1</th>
				<td>v1</td>
				<td>v11</td>
		</tr>
		<tr>
				<th scope="row">r2</th>
				<td>v2</td>
				<td>v22</td>
		</tr>
</table>
ciak