Aller au contenu

Exercice 3 : Emploi du temps simplifié (Corrigé)

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Emploi du temps - L2 Informatique</title>
</head>
<body>
    <h1>Emploi du temps - L2 Informatique</h1>
    <h2>Semestre 3 - Année 2025/2026</h2>

    <table border="1">
        <thead>
            <tr>
                <th>Horaires</th>
                <th>Lundi</th>
                <th>Mardi</th>
                <th>Mercredi</th>
                <th>Jeudi</th>
                <th>Vendredi</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th>8h - 10h</th>
                <td>CM Algorithmique</td>
                <td rowspan="2">TP Programmation C (3h)</td>
                <td>CM Bases de données</td>
                <td>CM Réseaux</td>
                <td>TD Mathématiques</td>
            </tr>

            <tr>
                <th>10h - 12h</th>
                <td>TD Algorithmique</td>
                <!-- Cellule fusionnée avec ligne précédente -->
                <td>TP Web HTML/CSS</td>
                <td>TD Réseaux</td>
                <td>CM Anglais</td>
            </tr>

            <tr>
                <th>12h - 14h</th>
                <td colspan="5">Pause déjeuner</td>
            </tr>

            <tr>
                <th>14h - 16h</th>
                <td>TP Bases de données</td>
                <td rowspan="2">Projet tutoré</td>
                <td>TD Programmation</td>
                <td>CM Architecture</td>
                <td rowspan="2">TP Systèmes</td>
            </tr>

            <tr>
                <th>16h - 18h</th>
                <td>TD Web</td>
                <!-- Cellule fusionnée avec ligne précédente -->
                <td>TP Réseaux</td>
                <td>TD Architecture</td>
                <!-- Cellule fusionnée avec ligne précédente -->
            </tr>
        </tbody>
    </table>

    <h3>Légende</h3>
    <ul>
        <li><strong>CM</strong> : Cours Magistral (théorie)</li>
        <li><strong>TD</strong> : Travaux Dirigés (exercices encadrés)</li>
        <li><strong>TP</strong> : Travaux Pratiques (sur ordinateur)</li>
    </ul>
</body>
</html>