Escuela Superior de Informática Buceo

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Codificación de caracteres</title>
</head> <body> </body> </html>
<table>
<tr>
<th>Ciudad</th>
<th>Capital</th>
</tr>
<tr>
<td>Cerro Largo</td>
<td>Melo</td>
</tr>
<tr>
<td>Flores</td>
<td>Trinidad</td>
</tr>
<tr>
<td>Lavalleja</td>
<td>Minas</td>
</tr>
</table>

<table border="1">
[...]
<table border="1">
<tr>
<th colspan="4">Diferencias entre el perro y el hombre</th>
</tr>
<tr>
<th rowspan="2">Diferencias</th>
<th colspan="2">Perro</th>
<th rowspan="2">Hombre</th>
</tr>
<tr>
<th>Pequeño</td>
<th>Grande</td>
</tr>
<tr>
<td>Duración crecimiento</td>
<td>10 meses</td>
<td>18 a 24 meses</td>
<td>16 años</td>
</tr>
<tr>
<td>Tiempo de gestación</td>
<td colspan="2">58 a 63 días</td>
<td>9 meses</td>
</tr>
</table>
<table border="1">
<caption>Diferencias entre el perro y el hombre</caption>
<tr>
<th rowspan="2">Diferencias</th>
<th colspan="2">Perro</th>
<th rowspan="2">Hombre</th>
</tr>
[...]
</table>
<img src="imagen.png"></img>
<img src="imagen.png" width="800" height="600"></img>