This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/komp/stundenplan.html
danielvici123 a6319190ae komp aufgabe
2024-11-07 13:00:21 +01:00

98 lines
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
border: 1px solid black;
background-color: aliceblue;
}
</style>
</head>
<body>
<table >
<tr>
<th style="background-color: aliceblue;">Tag -><br> Stunde\/</th> <!-- STUNDE -->
<th style="background-color: aliceblue;">Mo</th>
<th style="background-color: aliceblue;">Di</th>
<th style="background-color: aliceblue;">Mi</th>
<th style="background-color: aliceblue;">Do</th>
<th style="background-color: aliceblue;">Fr</th>
</tr>
<tr>
<th style="background-color: aliceblue;">1</th> <!-- STUNDE -->
<th>-----</th> <!-- MONTAG-->
<th style="background-color: blueviolet;">M-FHR</th> <!-- DIENSTAG-->
<th>------</th> <!-- MITTWOCH-->
<th style="background-color: orange;">KOM</th> <!-- DONNERSTAG-->
<th style="background-color: orange;">GK-WP</th> <!-- FREITAG-->
</tr>
<tr>
<th style="background-color: aliceblue;">2</th>
<th>-----</th>
<th style="background-color: orange;">KOM</th>
<th style="background-color: orange;">E</th>
<th style="background-color: orange;">KOM</th>
<th style="background-color: orange;">GK-WP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">3</th>
<th>-----</th>
<th style="background-color: orange;">KOM</th>
<th style="background-color: orange;">AM-WP</th>
<th style="background-color: orange;">PROG</th>
<th style="background-color: orange;">KOMP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">4</th>
<th>REL</th>
<th>INF</th>
<th>PROGP</th>
<th>PROG</th>
<th>INFP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">5</th>
<th>KOMP</th>
<th>INF</th>
<th>PROGP</th>
<th>D</th>
<th>INFP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">6</th>
<th>KOMP</th>
<th>INF</th>
<th>PROGP</th>
<th>KOMP</th>
<th>INFP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">7</th>
<th>RO-WP</th>
<th>AM-WP</th>
<th>PROG</th>
<th>WI</th>
<th>------</th>
</tr>
<tr>
<th style="background-color: aliceblue;">8</th>
<th>RO-WP</th>
<th style="background-color: blueviolet;">E-FHR</th>
<th style="background-color: blueviolet;">M-FHR</th>
<th>WI</th>
<th>------</th>
</tr>
<tr>
<th style="background-color: aliceblue;">8</th>
<th style="background-color: blueviolet;">D-FHR</th>
<th>------</th>
<th style="background-color: blueviolet;">E-FHR</th>
<th style="background-color: blueviolet;">D-FHR</th>
<th>------</th>
</tr>
</table>
</body>
</html>