IFCD0210/Practicas/Practicas HTML/Practica 7/Practica 7.html
2023-11-24 13:52:12 +01:00

32 lines
963 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Ejemplo Tablas Html</title>
</head>
<body style="font-size: 30px;">
<table align="center" border="2">
<tbody>
<tr>
<td width="200" height="100" align="center">1</td>
<td width="200" height="100" align="center">2</td>
<td width="200" height="100" align="center">3</td>
</tr>
<tr>
<td width="200" height="100" align="center">4</td>
<td width="200" height="100" align="center">5</td>
<td width="200" height="100" align="center">6</td>
</tr>
<tr>
<td width="200" height="100" align="center">7</td>
<td width="200" height="100" align="center">8</td>
<td width="200" height="100" align="center">9</td>
</tr>­
</tbody>
</table>
</body>
</html>