forked from WEB-IB-SS26/development-ib
49 lines
862 B
HTML
49 lines
862 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Stundenplan - Klasse 8a</title>
|
||
</head>
|
||
|
||
<body>
|
||
<h1>Aktueller Stundenplan</h1>
|
||
<table>
|
||
<caption>Stundenplan - 8. Schuljahr</caption>
|
||
<thead>
|
||
<tr>
|
||
<th scope="col">Zeit</th>
|
||
<th scope="col">Montag</th>
|
||
<th scope="col">Dienstag</th>
|
||
<th scope="col">Mittwoch</th>
|
||
<th scope="col">Donnerstag</th>
|
||
<th scope="col">Freitag</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>08–10 Uhr</td>
|
||
<td>Mathe</td>
|
||
<td>Englisch</td>
|
||
<td>Physik</td>
|
||
<td>Chemie</td>
|
||
<td>Sport</td>
|
||
</tr>
|
||
<tr>
|
||
<td>10–12 Uhr</td>
|
||
<td>Deutsch</td>
|
||
<td>Biologie</td>
|
||
<td>Musik</td>
|
||
<td>Mathe</td>
|
||
<td>Kunst</td>
|
||
</tr>
|
||
</tbody>
|
||
<tfoot>
|
||
<tr>
|
||
<td colspan="6">Stand: Juli 2025</td>
|
||
</tr>
|
||
</tfoot>
|
||
</table>
|
||
</body>
|
||
|
||
</html> |