This commit is contained in:
2023-11-27 13:45:25 +01:00
parent fe64a50461
commit 2127e2e850
25 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practica 7x</title>
</head>
<body>
<table align="center" border="4" style="background-color: blue; border-color: red; border-collapse: collapse; width: 100%; color: white;">
<tr align="center" style="height: 200px;">
<td>1</td>
<td colspan="4" style="background-color: green;">2</td>
<td>6</td>
</tr>
<tr align="center" style="height: 200px;">
<td colspan="2" rowspan="2" style="background-color: green;">7</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td rowspan="3" style="background-color: green;">12</td>
</tr>
<tr align="center" style="height: 200px;">
<td>15</td>
<td>16</td>
<td>17</td>
</tr>
<tr align="center" style="height: 200px;">
<td>19</td>
<td>20</td>
<td colspan="2" style="background-color: green;">21</td>
<td>23</td>
</tr>
</table>
</body>
</html>