jueves, 9 de diciembre de 2021

Solución tablas (II)

<!DOCTYPE html>
<html>
<head>

</head>
<body>

<table border="1">
    <caption>Horarios</caption>
    <tr>
        <td></td>
        <td>Lunes</td>
        <td>Martes</td>
        <td>Miércoles</td>
        <td>Jueves</td>
        <td>Viernes</td>
    </tr>
    <tr>
        <td>9.30-10.30</td>
        <td rowspan="3">Internet</td>
        <td>Access</td>
        <td>Access</td>
        <td colspan="2">Word</td>
    </tr>
    <tr>
        <td>10.30-11.30</td>
        <td colspan="4">Tiempo de descanso</td>
    </tr>
    <tr>
        <td>11.00-12.30</td>
        <td colspan="2">Word</td>
        <td>Excel</td>
        <td>Excel</td>
    </tr>
</table>

</body>
</html>