💻 Código HTML

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="author" content="Jostyn VY">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Horario DAW</title>
</head>
<body>
     <table border="1">
        <caption>Horario <abbr tittle= "Desarrollo de Aplicaciones Web">DAW</abbr></caption>
        <thead>
            <tr>
                <th scope="col">Hora</th>
                <th scope="col">Lunes</th>  
                <th scope="col">Martes</th>
                <th scope="col">Miércoles</th>
                <th scope="col">Jueves</th>
                <th scope="col">Viernes</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th scope="row">15:20 - 16:15</th>
                <td><abbr tittle= "Lenguaje de marcas y Sistemas de Gestion de la informacion">LMSGI</abbr></td>
                <td>ENTDL</td>
                <td>BBDD</td>
                <td>BBDD</td>
                <td>SSINF</td>
            </tr>
            <tr>
               <th scope="row">16:15 - 17:10</th>
               <td>Programacion</td>
               <td>Programacion</td>
               <td>ENTDL</td>
               <td>BD</td>
               <td>BD</td>
            </tr>
            <tr>
               <th scope="row">17:10 - 17:30</th>
               <td>Programacion</td>
               <td>Programacion</td>
                <td>LMSGI</td>
                <td>LMSGI</td>
                <td>BD</td>
            </tr>
            <tr>
                <th scope="row">18:05 - 18:25</th>
                <td colspan="5">Recreo</td>
            </tr>
            <tr>
                <th scope="row">18:25 - 19:20</th>
                <td>SSINF</td>
                <td>IPEI</td>
                <td>BBDD</td>
                <td>SSINF</td>
                <td>Programacion</td>
            </tr>
            <tr>
                <th scope="row">19:20 - 20:15</th>
                <td>Ingles</td>
                <td>IPEI</td>
                <td>BBDD</td>
                <td>IPEI</td>
                <td>Programacion</td>
            </tr>
            <tr>
                <th scope="row">20:15 - 21:10</th>
                <td>Ingles</td>
                <td>SSINF</td>
                <td>BBDD</td>
                <td>ENTDL</td>
                <td>LMSGI</td>
            </tr>
        </tbody>
     </table>
 </body>
</html>
  

📸 Resultado del ejercicio

Resultado ⬅ Volver